3.16.3
[express.git] / package.json
blobffd3e0a3f99071148ff383993f0870f6c5384dad
2   "name": "express",
3   "description": "Sinatra inspired web development framework",
4   "version": "3.16.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   ],
14   "keywords": [
15     "express",
16     "framework",
17     "sinatra",
18     "web",
19     "rest",
20     "restful",
21     "router",
22     "app",
23     "api"
24   ],
25   "repository": "visionmedia/express",
26   "license": "MIT",
27   "dependencies": {
28     "basic-auth": "1.0.0",
29     "buffer-crc32": "0.2.3",
30     "connect": "2.25.3",
31     "commander": "1.3.2",
32     "debug": "1.0.4",
33     "depd": "0.4.4",
34     "escape-html": "1.0.1",
35     "media-typer": "0.2.0",
36     "methods": "1.1.0",
37     "mkdirp": "0.5.0",
38     "parseurl": "~1.2.0",
39     "proxy-addr": "1.0.1",
40     "range-parser": "1.0.0",
41     "send": "0.8.1",
42     "vary": "0.1.0",
43     "cookie": "0.1.2",
44     "fresh": "0.2.2",
45     "cookie-signature": "1.0.4",
46     "merge-descriptors": "0.0.2"
47   },
48   "devDependencies": {
49     "connect-redis": "~1.5.0",
50     "istanbul": "0.3.0",
51     "mocha": "~1.21.4",
52     "should": "~4.0.0",
53     "ejs": "~1.0.0",
54     "jade": "~1.5.0",
55     "hjs": "~0.0.6",
56     "marked": "0.3.2",
57     "supertest": "~0.13.0"
58   },
59   "engines": {
60     "node": ">= 0.8.0"
61   },
62   "bin": {
63     "express": "./bin/express"
64   },
65   "scripts": {
66     "prepublish": "npm prune",
67     "test": "mocha --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
68     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
69     "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/"
70   }