1
|
{
|
2
|
"name": "express",
|
3
|
"description": "Fast, unopinionated, minimalist web framework",
|
4
|
"version": "4.17.1",
|
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.7",
|
31
|
"array-flatten": "1.1.1",
|
32
|
"body-parser": "1.19.0",
|
33
|
"content-disposition": "0.5.3",
|
34
|
"content-type": "~1.0.4",
|
35
|
"cookie": "0.4.0",
|
36
|
"cookie-signature": "1.0.6",
|
37
|
"debug": "2.6.9",
|
38
|
"depd": "~1.1.2",
|
39
|
"encodeurl": "~1.0.2",
|
40
|
"escape-html": "~1.0.3",
|
41
|
"etag": "~1.8.1",
|
42
|
"finalhandler": "~1.1.2",
|
43
|
"fresh": "0.5.2",
|
44
|
"merge-descriptors": "1.0.1",
|
45
|
"methods": "~1.1.2",
|
46
|
"on-finished": "~2.3.0",
|
47
|
"parseurl": "~1.3.3",
|
48
|
"path-to-regexp": "0.1.7",
|
49
|
"proxy-addr": "~2.0.5",
|
50
|
"qs": "6.7.0",
|
51
|
"range-parser": "~1.2.1",
|
52
|
"safe-buffer": "5.1.2",
|
53
|
"send": "0.17.1",
|
54
|
"serve-static": "1.14.1",
|
55
|
"setprototypeof": "1.1.1",
|
56
|
"statuses": "~1.5.0",
|
57
|
"type-is": "~1.6.18",
|
58
|
"utils-merge": "1.0.1",
|
59
|
"vary": "~1.1.2"
|
60
|
},
|
61
|
"devDependencies": {
|
62
|
"after": "0.8.2",
|
63
|
"connect-redis": "3.4.1",
|
64
|
"cookie-parser": "~1.4.4",
|
65
|
"cookie-session": "1.3.3",
|
66
|
"ejs": "2.6.1",
|
67
|
"eslint": "2.13.1",
|
68
|
"express-session": "1.16.1",
|
69
|
"hbs": "4.0.4",
|
70
|
"istanbul": "0.4.5",
|
71
|
"marked": "0.6.2",
|
72
|
"method-override": "3.0.0",
|
73
|
"mocha": "5.2.0",
|
74
|
"morgan": "1.9.1",
|
75
|
"multiparty": "4.2.1",
|
76
|
"pbkdf2-password": "1.2.1",
|
77
|
"should": "13.2.3",
|
78
|
"supertest": "3.3.0",
|
79
|
"vhost": "~3.0.2"
|
80
|
},
|
81
|
"engines": {
|
82
|
"node": ">= 0.10.0"
|
83
|
},
|
84
|
"files": [
|
85
|
"LICENSE",
|
86
|
"History.md",
|
87
|
"Readme.md",
|
88
|
"index.js",
|
89
|
"lib/"
|
90
|
],
|
91
|
"scripts": {
|
92
|
"lint": "eslint .",
|
93
|
"test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
|
94
|
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
|
95
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
|
96
|
"test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
|
97
|
}
|
98
|
}
|