package.json 1.1 KB

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