1{
2  "name": "mime-db",
3  "description": "Media Type Database",
4  "version": "1.40.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.4",
23    "co": "4.6.0",
24    "cogent": "1.0.1",
25    "csv-parse": "4.3.4",
26    "eslint": "5.16.0",
27    "eslint-config-standard": "12.0.0",
28    "eslint-plugin-import": "2.16.0",
29    "eslint-plugin-node": "8.0.1",
30    "eslint-plugin-promise": "4.1.1",
31    "eslint-plugin-standard": "4.0.0",
32    "gnode": "0.1.2",
33    "mocha": "6.1.4",
34    "nyc": "14.0.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}
59