package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "mime-types",
  3. "description": "The ultimate javascript content-type utility.",
  4. "version": "2.1.24",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)",
  8. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "mime",
  13. "types"
  14. ],
  15. "repository": "jshttp/mime-types",
  16. "dependencies": {
  17. "mime-db": "1.40.0"
  18. },
  19. "devDependencies": {
  20. "eslint": "5.16.0",
  21. "eslint-config-standard": "12.0.0",
  22. "eslint-plugin-import": "2.17.2",
  23. "eslint-plugin-node": "8.0.1",
  24. "eslint-plugin-promise": "4.1.1",
  25. "eslint-plugin-standard": "4.0.0",
  26. "mocha": "6.1.4",
  27. "nyc": "14.0.0"
  28. },
  29. "files": [
  30. "HISTORY.md",
  31. "LICENSE",
  32. "index.js"
  33. ],
  34. "engines": {
  35. "node": ">= 0.6"
  36. },
  37. "scripts": {
  38. "lint": "eslint .",
  39. "test": "mocha --reporter spec test/test.js",
  40. "test-cov": "nyc --reporter=html --reporter=text npm test",
  41. "test-travis": "nyc --reporter=text npm test"
  42. }
  43. }