deps: content-disposition@0.5.2
[express.git] / package.json
blob3a56a3de785ae9699f86c1e03d162a4e3a19877a
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "4.14.0",
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.3",
31     "array-flatten": "1.1.1",
32     "content-disposition": "0.5.2",
33     "content-type": "~1.0.2",
34     "cookie": "0.3.1",
35     "cookie-signature": "1.0.6",
36     "debug": "~2.2.0",
37     "depd": "~1.1.0",
38     "encodeurl": "~1.0.1",
39     "escape-html": "~1.0.3",
40     "etag": "~1.7.0",
41     "finalhandler": "0.5.0",
42     "fresh": "0.3.0",
43     "merge-descriptors": "1.0.1",
44     "methods": "~1.1.2",
45     "on-finished": "~2.3.0",
46     "parseurl": "~1.3.1",
47     "path-to-regexp": "0.1.7",
48     "proxy-addr": "~1.1.2",
49     "qs": "6.2.0",
50     "range-parser": "~1.2.0",
51     "send": "0.14.1",
52     "serve-static": "~1.11.1",
53     "type-is": "~1.6.13",
54     "utils-merge": "1.0.0",
55     "vary": "~1.1.0"
56   },
57   "devDependencies": {
58     "after": "0.8.2",
59     "body-parser": "~1.15.1",
60     "cookie-parser": "~1.4.3",
61     "ejs": "2.4.2",
62     "istanbul": "0.4.5",
63     "marked": "0.3.5",
64     "method-override": "~2.3.6",
65     "mocha": "2.5.3",
66     "morgan": "~1.7.0",
67     "should": "9.0.2",
68     "supertest": "1.2.0",
69     "connect-redis": "~2.4.1",
70     "cookie-session": "~1.2.0",
71     "express-session": "~1.13.0",
72     "jade": "~1.11.0",
73     "multiparty": "~4.1.2",
74     "vhost": "~3.0.2"
75   },
76   "engines": {
77     "node": ">= 0.10.0"
78   },
79   "files": [
80     "LICENSE",
81     "History.md",
82     "Readme.md",
83     "index.js",
84     "lib/"
85   ],
86   "scripts": {
87     "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
88     "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
89     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
90     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
91   }