tests: fix up app.locals tests
[express.git] / package.json
blob2fb6ebaab0b67e2a3ed87a47076d21df07a0771e
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "4.17.3",
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.8",
32     "array-flatten": "1.1.1",
33     "body-parser": "1.19.2",
34     "content-disposition": "0.5.4",
35     "content-type": "~1.0.4",
36     "cookie": "0.4.2",
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.7",
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     "marked": "0.7.0",
72     "method-override": "3.0.0",
73     "mocha": "9.2.0",
74     "morgan": "1.10.0",
75     "multiparty": "4.2.3",
76     "nyc": "15.1.0",
77     "pbkdf2-password": "1.2.1",
78     "resolve-path": "1.4.0",
79     "should": "13.2.3",
80     "supertest": "6.2.2",
81     "vhost": "~3.0.2"
82   },
83   "engines": {
84     "node": ">= 0.10.0"
85   },
86   "files": [
87     "LICENSE",
88     "History.md",
89     "Readme.md",
90     "index.js",
91     "lib/"
92   ],
93   "scripts": {
94     "lint": "eslint .",
95     "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
96     "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
97     "test-cov": "nyc --reporter=html --reporter=text npm test",
98     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
99   }