deps: send@0.16.2
[express.git] / package.json
blob6b2e0b9d8610a6e0ff4c67dc6ec4347a536e0245
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "4.16.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     "rest",
24     "restful",
25     "router",
26     "app",
27     "api"
28   ],
29   "dependencies": {
30     "accepts": "~1.3.4",
31     "array-flatten": "1.1.1",
32     "body-parser": "1.18.2",
33     "content-disposition": "0.5.2",
34     "content-type": "~1.0.4",
35     "cookie": "0.3.1",
36     "cookie-signature": "1.0.6",
37     "debug": "2.6.9",
38     "depd": "~1.1.2",
39     "encodeurl": "~1.0.2",
40     "escape-html": "~1.0.3",
41     "etag": "~1.8.1",
42     "finalhandler": "1.1.0",
43     "fresh": "0.5.2",
44     "merge-descriptors": "1.0.1",
45     "methods": "~1.1.2",
46     "on-finished": "~2.3.0",
47     "parseurl": "~1.3.2",
48     "path-to-regexp": "0.1.7",
49     "proxy-addr": "~2.0.2",
50     "qs": "6.5.1",
51     "range-parser": "~1.2.0",
52     "safe-buffer": "5.1.1",
53     "send": "0.16.2",
54     "serve-static": "1.13.1",
55     "setprototypeof": "1.1.0",
56     "statuses": "~1.4.0",
57     "type-is": "~1.6.15",
58     "utils-merge": "1.0.1",
59     "vary": "~1.1.2"
60   },
61   "devDependencies": {
62     "after": "0.8.2",
63     "cookie-parser": "~1.4.3",
64     "cookie-session": "1.3.2",
65     "ejs": "2.5.7",
66     "eslint": "2.13.1",
67     "express-session": "1.15.6",
68     "hbs": "4.0.1",
69     "istanbul": "0.4.5",
70     "marked": "0.3.12",
71     "method-override": "2.3.10",
72     "mocha": "3.5.3",
73     "morgan": "1.9.0",
74     "multiparty": "4.1.3",
75     "pbkdf2-password": "1.2.1",
76     "should": "13.2.1",
77     "supertest": "1.2.0",
78     "connect-redis": "~2.4.1",
79     "vhost": "~3.0.2"
80   },
81   "engines": {
82     "node": ">= 0.10.0"
83   },
84   "files": [
85     "LICENSE",
86     "History.md",
87     "Readme.md",
88     "index.js",
89     "lib/"
90   ],
91   "scripts": {
92     "lint": "eslint .",
93     "test": "mocha --require test/support/env --reporter spec --bail --check-leaks --no-exit test/ test/acceptance/",
94     "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks --no-exit test/ test/acceptance/",
95     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks --no-exit test/ test/acceptance/",
96     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks --no-exit test/ test/acceptance/"
97   }