/ node_modules / accepts / package.json
package.json
 1  {
 2    "name": "accepts",
 3    "description": "Higher-level content negotiation",
 4    "version": "2.0.0",
 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": "^3.0.0",
13      "negotiator": "^1.0.0"
14    },
15    "devDependencies": {
16      "deep-equal": "1.0.1",
17      "eslint": "7.32.0",
18      "eslint-config-standard": "14.1.1",
19      "eslint-plugin-import": "2.25.4",
20      "eslint-plugin-markdown": "2.2.1",
21      "eslint-plugin-node": "11.1.0",
22      "eslint-plugin-promise": "4.3.1",
23      "eslint-plugin-standard": "4.1.0",
24      "mocha": "9.2.0",
25      "nyc": "15.1.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 .",
37      "test": "mocha --reporter spec --check-leaks --bail test/",
38      "test-ci": "nyc --reporter=lcov --reporter=text npm test",
39      "test-cov": "nyc --reporter=html --reporter=text npm test"
40    },
41    "keywords": [
42      "content",
43      "negotiation",
44      "accept",
45      "accepts"
46    ]
47  }