You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB

  1. {
  2. "name": "mime-db",
  3. "description": "Media Type Database",
  4. "version": "1.52.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. "bluebird": "3.7.2",
  23. "co": "4.6.0",
  24. "cogent": "1.0.1",
  25. "csv-parse": "4.16.3",
  26. "eslint": "7.32.0",
  27. "eslint-config-standard": "15.0.1",
  28. "eslint-plugin-import": "2.25.4",
  29. "eslint-plugin-markdown": "2.2.1",
  30. "eslint-plugin-node": "11.1.0",
  31. "eslint-plugin-promise": "5.1.1",
  32. "eslint-plugin-standard": "4.1.0",
  33. "gnode": "0.1.2",
  34. "media-typer": "1.1.0",
  35. "mocha": "9.2.1",
  36. "nyc": "15.1.0",
  37. "raw-body": "2.5.0",
  38. "stream-to-array": "2.3.0"
  39. },
  40. "files": [
  41. "HISTORY.md",
  42. "LICENSE",
  43. "README.md",
  44. "db.json",
  45. "index.js"
  46. ],
  47. "engines": {
  48. "node": ">= 0.6"
  49. },
  50. "scripts": {
  51. "build": "node scripts/build",
  52. "fetch": "node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx",
  53. "lint": "eslint .",
  54. "test": "mocha --reporter spec --bail --check-leaks test/",
  55. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  56. "test-cov": "nyc --reporter=html --reporter=text npm test",
  57. "update": "npm run fetch && npm run build",
  58. "version": "node scripts/version-history.js && git add HISTORY.md"
  59. }
  60. }