package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "type-is",
  3. "description": "Infer the content-type of a request.",
  4. "version": "2.0.1",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "repository": "jshttp/type-is",
  11. "dependencies": {
  12. "content-type": "^1.0.5",
  13. "media-typer": "^1.1.0",
  14. "mime-types": "^3.0.0"
  15. },
  16. "devDependencies": {
  17. "eslint": "7.32.0",
  18. "eslint-config-standard": "14.1.1",
  19. "eslint-plugin-import": "2.25.4",
  20. "eslint-plugin-markdown": "2.2.1",
  21. "eslint-plugin-node": "11.1.0",
  22. "eslint-plugin-promise": "5.2.0",
  23. "eslint-plugin-standard": "4.1.0",
  24. "mocha": "9.2.1",
  25. "nyc": "15.1.0"
  26. },
  27. "engines": {
  28. "node": ">= 0.6"
  29. },
  30. "files": [
  31. "LICENSE",
  32. "HISTORY.md",
  33. "index.js"
  34. ],
  35. "scripts": {
  36. "lint": "eslint .",
  37. "test": "mocha --reporter spec --check-leaks --bail test/",
  38. "test:debug": "mocha --reporter spec --check-leaks --inspect --inspect-brk test/",
  39. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  40. "test-cov": "nyc --reporter=html --reporter=text npm test"
  41. },
  42. "keywords": [
  43. "content",
  44. "type",
  45. "checking"
  46. ]
  47. }