package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "mime-db",
  3. "description": "Media Type Database",
  4. "version": "1.54.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  8. "Robert Kieffer <robert@broofa.com> (http://github.com/broofa)"
  9. ],
  10. "license": "MIT",
  11. "keywords": [
  12. "mime",
  13. "db",
  14. "type",
  15. "types",
  16. "database",
  17. "charset",
  18. "charsets"
  19. ],
  20. "repository": "jshttp/mime-db",
  21. "devDependencies": {
  22. "csv-parse": "4.16.3",
  23. "eslint": "8.32.0",
  24. "eslint-config-standard": "15.0.1",
  25. "eslint-plugin-import": "2.27.5",
  26. "eslint-plugin-markdown": "3.0.0",
  27. "eslint-plugin-node": "11.1.0",
  28. "eslint-plugin-promise": "6.1.1",
  29. "eslint-plugin-standard": "4.1.0",
  30. "media-typer": "1.1.0",
  31. "mocha": "10.2.0",
  32. "nyc": "15.1.0",
  33. "stream-to-array": "2.3.0",
  34. "undici": "7.1.0"
  35. },
  36. "files": [
  37. "HISTORY.md",
  38. "LICENSE",
  39. "README.md",
  40. "db.json",
  41. "index.js"
  42. ],
  43. "engines": {
  44. "node": ">= 0.6"
  45. },
  46. "scripts": {
  47. "build": "node scripts/build",
  48. "fetch": "node scripts/fetch-apache && node scripts/fetch-iana && node scripts/fetch-nginx",
  49. "lint": "eslint .",
  50. "test": "mocha --reporter spec --check-leaks test/",
  51. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  52. "test-cov": "nyc --reporter=html --reporter=text npm test",
  53. "update": "npm run fetch && npm run build",
  54. "version": "node scripts/version-history.js && git add HISTORY.md"
  55. }
  56. }