fix(deps): send@^1.1.0
[express.git] / package.json
blobc062162ddc2247b8c9792e14963c0f823c79562f
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "5.0.0-beta.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": "^2.0.0",
32     "body-parser": "^2.0.1",
33     "content-disposition": "^1.0.0",
34     "content-type": "~1.0.4",
35     "cookie": "0.6.0",
36     "cookie-signature": "^1.2.1",
37     "debug": "4.3.6",
38     "depd": "2.0.0",
39     "encodeurl": "~2.0.0",
40     "escape-html": "~1.0.3",
41     "etag": "~1.8.1",
42     "finalhandler": "^2.0.0",
43     "fresh": "2.0.0",
44     "http-errors": "2.0.0",
45     "merge-descriptors": "^2.0.0",
46     "methods": "~1.1.2",
47     "mime-types": "^3.0.0",
48     "on-finished": "2.4.1",
49     "once": "1.4.0",
50     "parseurl": "~1.3.3",
51     "proxy-addr": "~2.0.7",
52     "qs": "6.13.0",
53     "range-parser": "~1.2.1",
54     "router": "^2.0.0",
55     "safe-buffer": "5.2.1",
56     "send": "^1.1.0",
57     "serve-static": "^2.1.0",
58     "setprototypeof": "1.2.0",
59     "statuses": "2.0.1",
60     "type-is": "^2.0.0",
61     "utils-merge": "1.0.1",
62     "vary": "~1.1.2"
63   },
64   "devDependencies": {
65     "after": "0.8.2",
66     "connect-redis": "3.4.2",
67     "cookie-parser": "1.4.6",
68     "cookie-session": "2.0.0",
69     "ejs": "3.1.9",
70     "eslint": "8.47.0",
71     "express-session": "1.17.2",
72     "hbs": "4.2.0",
73     "marked": "0.7.0",
74     "method-override": "3.0.0",
75     "mocha": "10.2.0",
76     "morgan": "1.10.0",
77     "nyc": "15.1.0",
78     "pbkdf2-password": "1.2.1",
79     "supertest": "6.3.0",
80     "vhost": "~3.0.2"
81   },
82   "engines": {
83     "node": ">= 18"
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": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test",
96     "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test",
97     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
98   }