package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "mime-types",
  3. "description": "The ultimate javascript content-type utility.",
  4. "version": "3.0.1",
  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.54.0"
  18. },
  19. "devDependencies": {
  20. "eslint": "8.33.0",
  21. "eslint-config-standard": "14.1.1",
  22. "eslint-plugin-import": "2.27.5",
  23. "eslint-plugin-markdown": "3.0.0",
  24. "eslint-plugin-node": "11.1.0",
  25. "eslint-plugin-promise": "6.1.1",
  26. "eslint-plugin-standard": "4.1.0",
  27. "mocha": "10.2.0",
  28. "nyc": "15.1.0"
  29. },
  30. "files": [
  31. "HISTORY.md",
  32. "LICENSE",
  33. "index.js",
  34. "mimeScore.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.6"
  38. },
  39. "scripts": {
  40. "lint": "eslint .",
  41. "test": "mocha --reporter spec test/test.js",
  42. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  43. "test-cov": "nyc --reporter=html --reporter=text npm test"
  44. }
  45. }