UNPKG

2.23 kBJSONView Raw
1{
2 "name": "express",
3 "description": "Sinatra inspired web development framework",
4 "version": "3.20.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 ],
14 "license": "MIT",
15 "repository": "strongloop/express",
16 "homepage": "http://expressjs.com/",
17 "keywords": [
18 "express",
19 "framework",
20 "sinatra",
21 "web",
22 "rest",
23 "restful",
24 "router",
25 "app",
26 "api"
27 ],
28 "dependencies": {
29 "basic-auth": "1.0.0",
30 "connect": "2.29.1",
31 "content-disposition": "0.5.0",
32 "content-type": "~1.0.1",
33 "commander": "2.6.0",
34 "cookie": "0.1.2",
35 "cookie-signature": "1.0.6",
36 "debug": "~2.1.3",
37 "depd": "~1.0.0",
38 "escape-html": "1.0.1",
39 "etag": "~1.5.1",
40 "fresh": "0.2.4",
41 "merge-descriptors": "1.0.0",
42 "methods": "~1.1.1",
43 "mkdirp": "0.5.0",
44 "parseurl": "~1.3.0",
45 "proxy-addr": "~1.0.7",
46 "range-parser": "~1.0.2",
47 "send": "0.12.2",
48 "utils-merge": "1.0.0",
49 "vary": "~1.0.0"
50 },
51 "devDependencies": {
52 "connect-redis": "~1.5.0",
53 "ejs": "2.3.1",
54 "istanbul": "0.3.8",
55 "marked": "0.3.3",
56 "mocha": "~2.2.1",
57 "should": "~5.2.0",
58 "supertest": "~0.15.0"
59 },
60 "engines": {
61 "node": ">= 0.8.0"
62 },
63 "bin": {
64 "express": "./bin/express"
65 },
66 "files": [
67 "LICENSE",
68 "History.md",
69 "Readme.md",
70 "index.js",
71 "bin/",
72 "lib/"
73 ],
74 "scripts": {
75 "test": "mocha --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
76 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
77 "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/",
78 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/"
79 }
80}