UNPKG

2.77 kBJSONView Raw
1{
2 "name": "express",
3 "description": "Fast, unopinionated, minimalist web framework",
4 "version": "4.15.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": "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.6.8",
37 "depd": "~1.1.1",
38 "encodeurl": "~1.0.1",
39 "escape-html": "~1.0.3",
40 "etag": "~1.8.0",
41 "finalhandler": "~1.0.4",
42 "fresh": "0.5.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.5",
49 "qs": "6.5.0",
50 "range-parser": "~1.2.0",
51 "send": "0.15.4",
52 "serve-static": "1.12.4",
53 "setprototypeof": "1.0.3",
54 "statuses": "~1.3.1",
55 "type-is": "~1.6.15",
56 "utils-merge": "1.0.0",
57 "vary": "~1.1.1"
58 },
59 "devDependencies": {
60 "after": "0.8.2",
61 "body-parser": "1.17.2",
62 "cookie-parser": "~1.4.3",
63 "cookie-session": "1.3.0",
64 "ejs": "2.5.7",
65 "eslint": "2.13.1",
66 "express-session": "1.15.5",
67 "hbs": "4.0.1",
68 "istanbul": "0.4.5",
69 "marked": "0.3.6",
70 "method-override": "2.3.9",
71 "mocha": "3.5.0",
72 "morgan": "1.8.2",
73 "multiparty": "4.1.3",
74 "pbkdf2-password": "1.2.1",
75 "should": "11.2.1",
76 "supertest": "1.2.0",
77 "connect-redis": "~2.4.1",
78 "vhost": "~3.0.2"
79 },
80 "engines": {
81 "node": ">= 0.10.0"
82 },
83 "files": [
84 "LICENSE",
85 "History.md",
86 "Readme.md",
87 "index.js",
88 "lib/"
89 ],
90 "scripts": {
91 "lint": "eslint .",
92 "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
93 "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
94 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
95 "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
96 }
97}