1
|
{
|
2
|
"name": "mime-db",
|
3
|
"description": "Media Type Database",
|
4
|
"version": "1.43.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.8.3",
|
26
|
"eslint": "6.8.0",
|
27
|
"eslint-config-standard": "14.1.0",
|
28
|
"eslint-plugin-import": "2.19.1",
|
29
|
"eslint-plugin-node": "11.0.0",
|
30
|
"eslint-plugin-promise": "4.2.1",
|
31
|
"eslint-plugin-standard": "4.0.1",
|
32
|
"gnode": "0.1.2",
|
33
|
"mocha": "7.0.0",
|
34
|
"nyc": "15.0.0",
|
35
|
"raw-body": "2.4.1",
|
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
|
}
|