tests: fix wording of req.accepts* test cases
[express.git] / package.json
blobebb7425d9accb89d3b0176ea5e861cd7ef68c6e8
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "4.17.2",
5   "author": "TJ Holowaychuk <tj@vision-media.ca>",
6   "contributors": [
7     "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
8     "Ciaran Jessup <ciaranj@gmail.com>",
9     "Douglas Christopher Wilson <doug@somethingdoug.com>",
10     "Guillermo Rauch <rauchg@gmail.com>",
11     "Jonathan Ong <me@jongleberry.com>",
12     "Roman Shtylman <shtylman+expressjs@gmail.com>",
13     "Young Jae Sim <hanul@hanul.me>"
14   ],
15   "license": "MIT",
16   "repository": "expressjs/express",
17   "homepage": "http://expressjs.com/",
18   "keywords": [
19     "express",
20     "framework",
21     "sinatra",
22     "web",
23     "http",
24     "rest",
25     "restful",
26     "router",
27     "app",
28     "api"
29   ],
30   "dependencies": {
31     "accepts": "~1.3.7",
32     "array-flatten": "1.1.1",
33     "body-parser": "1.19.1",
34     "content-disposition": "0.5.4",
35     "content-type": "~1.0.4",
36     "cookie": "0.4.1",
37     "cookie-signature": "1.0.6",
38     "debug": "2.6.9",
39     "depd": "~1.1.2",
40     "encodeurl": "~1.0.2",
41     "escape-html": "~1.0.3",
42     "etag": "~1.8.1",
43     "finalhandler": "~1.1.2",
44     "fresh": "0.5.2",
45     "merge-descriptors": "1.0.1",
46     "methods": "~1.1.2",
47     "on-finished": "~2.3.0",
48     "parseurl": "~1.3.3",
49     "path-to-regexp": "0.1.7",
50     "proxy-addr": "~2.0.7",
51     "qs": "6.9.6",
52     "range-parser": "~1.2.1",
53     "safe-buffer": "5.2.1",
54     "send": "0.17.2",
55     "serve-static": "1.14.2",
56     "setprototypeof": "1.2.0",
57     "statuses": "~1.5.0",
58     "type-is": "~1.6.18",
59     "utils-merge": "1.0.1",
60     "vary": "~1.1.2"
61   },
62   "devDependencies": {
63     "after": "0.8.2",
64     "connect-redis": "3.4.2",
65     "cookie-parser": "1.4.6",
66     "cookie-session": "2.0.0",
67     "ejs": "3.1.6",
68     "eslint": "7.32.0",
69     "express-session": "1.17.2",
70     "hbs": "4.2.0",
71     "istanbul": "0.4.5",
72     "marked": "0.7.0",
73     "method-override": "3.0.0",
74     "mocha": "9.2.0",
75     "morgan": "1.10.0",
76     "multiparty": "4.2.2",
77     "pbkdf2-password": "1.2.1",
78     "should": "13.2.3",
79     "supertest": "6.1.6",
80     "vhost": "~3.0.2"
81   },
82   "engines": {
83     "node": ">= 0.10.0"
84   },
85   "files": [
86     "LICENSE",
87     "History.md",
88     "Readme.md",
89     "index.js",
90     "lib/"
91   ],
92   "scripts": {
93     "lint": "eslint .",
94     "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
95     "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
96     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
97     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
98   }