1
|
{
|
2
|
"name": "accepts",
|
3
|
"description": "Higher-level content negotiation",
|
4
|
"version": "1.3.7",
|
5
|
"contributors": [
|
6
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
7
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
8
|
],
|
9
|
"license": "MIT",
|
10
|
"repository": "jshttp/accepts",
|
11
|
"dependencies": {
|
12
|
"mime-types": "~2.1.24",
|
13
|
"negotiator": "0.6.2"
|
14
|
},
|
15
|
"devDependencies": {
|
16
|
"deep-equal": "1.0.1",
|
17
|
"eslint": "5.16.0",
|
18
|
"eslint-config-standard": "12.0.0",
|
19
|
"eslint-plugin-import": "2.17.2",
|
20
|
"eslint-plugin-markdown": "1.0.0",
|
21
|
"eslint-plugin-node": "8.0.1",
|
22
|
"eslint-plugin-promise": "4.1.1",
|
23
|
"eslint-plugin-standard": "4.0.0",
|
24
|
"mocha": "6.1.4",
|
25
|
"nyc": "14.0.0"
|
26
|
},
|
27
|
"files": [
|
28
|
"LICENSE",
|
29
|
"HISTORY.md",
|
30
|
"index.js"
|
31
|
],
|
32
|
"engines": {
|
33
|
"node": ">= 0.6"
|
34
|
},
|
35
|
"scripts": {
|
36
|
"lint": "eslint --plugin markdown --ext js,md .",
|
37
|
"test": "mocha --reporter spec --check-leaks --bail test/",
|
38
|
"test-cov": "nyc --reporter=html --reporter=text npm test",
|
39
|
"test-travis": "nyc --reporter=text npm test"
|
40
|
},
|
41
|
"keywords": [
|
42
|
"content",
|
43
|
"negotiation",
|
44
|
"accept",
|
45
|
"accepts"
|
46
|
]
|
47
|
}
|