forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@hubot-friends/express",
"description": "Fast, unopinionated, minimalist web framework",
"version": "4.0.0",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Aaron Heckmann <[email protected]>",
"Ciaran Jessup <[email protected]>",
"Douglas Christopher Wilson <[email protected]>",
"Guillermo Rauch <[email protected]>",
"Jonathan Ong <[email protected]>",
"Roman Shtylman <[email protected]>",
"Young Jae Sim <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hubot-friends/express.git"
},
"homepage": "https://github.com/hubot-friends/express/",
"keywords": [
"express",
"framework",
"sinatra",
"web",
"http",
"rest",
"restful",
"router",
"app",
"api"
],
"dependencies": {
"accepts": "^1.3.8",
"body-parser": "^2.0.0-beta.2",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"cookie": "^0.6.0",
"cookie-signature": "^1.2.1",
"debug": "^4.3.4",
"depd": "^2.0.0",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"finalhandler": "^1.2.0",
"fresh": "^0.5.2",
"merge-descriptors": "^2.0.0",
"methods": "^1.1.2",
"mime-types": "^2.1.35",
"on-finished": "^2.4.1",
"parseurl": "^1.3.3",
"path-is-absolute": "1.0.1",
"path-to-regexp": "^6.2.1",
"proxy-addr": "^2.0.7",
"qs": "^6.11.2",
"range-parser": "^1.2.1",
"send": "^1.0.0-beta.1",
"serve-static": "2.0.0-beta.1",
"statuses": "^2.0.1",
"type-is": "^1.6.18",
"utils-merge": "^1.0.1",
"vary": "^1.1.2"
},
"devDependencies": {
"after": "^0.8.2",
"autocannon": "^7.14.0",
"connect-redis": "^7.1.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"ejs": "^3.1.9",
"eslint": "^8.55.0",
"express-session": "^1.17.3",
"hbs": "^4.2.0",
"marked": "^11.0.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"multiparty": "^4.2.3",
"online": "^0.0.1",
"pbkdf2-password": "^1.2.1",
"redis": "^4.6.12",
"supertest": "^6.3.3",
"vhost": "^3.0.2"
},
"engines": {
"node": ">= 18.19.0"
},
"files": [
"LICENSE",
"History.md",
"Readme.md",
"index.js",
"lib/"
],
"scripts": {
"pretest": "eslint .",
"test": "NODE_ENV=test NO_DEPRECATION='body-parser,express' node --test",
"benchmark": "node benchmarks/index.mjs"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
},
"publishConfig": {
"access": "public"
}
}