deps: path-to-regexp@0.1.6
[express.git] / package.json
blob95a4a472f872691168ffbe3b01fa5585d3703bae
2   "name": "express",
3   "description": "Fast, unopinionated, minimalist web framework",
4   "version": "4.12.4",
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": "strongloop/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.2.9",
31     "array-flatten": "1.1.0",
32     "content-disposition": "0.5.0",
33     "content-type": "~1.0.1",
34     "cookie": "0.1.3",
35     "cookie-signature": "1.0.6",
36     "debug": "~2.2.0",
37     "depd": "~1.0.1",
38     "escape-html": "1.0.2",
39     "etag": "~1.7.0",
40     "finalhandler": "0.4.0",
41     "fresh": "0.3.0",
42     "merge-descriptors": "1.0.0",
43     "methods": "~1.1.1",
44     "on-finished": "~2.3.0",
45     "parseurl": "~1.3.0",
46     "path-to-regexp": "0.1.6",
47     "proxy-addr": "~1.0.8",
48     "qs": "2.4.2",
49     "range-parser": "~1.0.2",
50     "send": "0.13.0",
51     "serve-static": "~1.10.0",
52     "type-is": "~1.6.3",
53     "vary": "~1.0.0",
54     "utils-merge": "1.0.0"
55   },
56   "devDependencies": {
57     "after": "0.8.1",
58     "ejs": "2.3.1",
59     "istanbul": "0.3.9",
60     "marked": "0.3.3",
61     "mocha": "2.2.5",
62     "should": "7.0.1",
63     "supertest": "1.0.1",
64     "body-parser": "~1.13.1",
65     "connect-redis": "~2.3.0",
66     "cookie-parser": "~1.3.5",
67     "cookie-session": "~1.1.0",
68     "express-session": "~1.11.3",
69     "jade": "~1.11.0",
70     "method-override": "~2.3.3",
71     "morgan": "~1.6.0",
72     "multiparty": "~4.1.2",
73     "vhost": "~3.0.0"
74   },
75   "engines": {
76     "node": ">= 0.10.0"
77   },
78   "files": [
79     "LICENSE",
80     "History.md",
81     "Readme.md",
82     "index.js",
83     "lib/"
84   ],
85   "scripts": {
86     "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
87     "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
88     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
89     "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
90   }