package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "mime-db",
  3. "description": "Media Type Database",
  4. "version": "1.38.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.5.3",
  23. "co": "4.6.0",
  24. "cogent": "1.0.1",
  25. "csv-parse": "3.2.0",
  26. "eslint": "5.13.0",
  27. "eslint-config-standard": "12.0.0",
  28. "eslint-plugin-import": "2.16.0",
  29. "eslint-plugin-node": "7.0.1",
  30. "eslint-plugin-promise": "4.0.1",
  31. "eslint-plugin-standard": "4.0.0",
  32. "gnode": "0.1.2",
  33. "mocha": "5.2.0",
  34. "nyc": "13.2.0",
  35. "raw-body": "2.3.3",
  36. "stream-to-array": "2.3.0"
  37. },
  38. "files": [
  39. "HISTORY.md",
  40. "LICENSE",
  41. "README.md",
  42. "db.json",
  43. "index.js"
  44. ],
  45. "engines": {
  46. "node": ">= 0.6"
  47. },
  48. "scripts": {
  49. "build": "node scripts/build",
  50. "fetch": "node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx",
  51. "lint": "eslint .",
  52. "test": "mocha --reporter spec --bail --check-leaks test/",
  53. "test-cov": "nyc --reporter=html --reporter=text npm test",
  54. "test-travis": "nyc --reporter=text npm test",
  55. "update": "npm run fetch && npm run build",
  56. "version": "node scripts/version-history.js && git add HISTORY.md"
  57. }
  58. }