forked from rahulramesha/http2-express-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"name": "http2-express-bridge",
"version": "1.0.7",
"description": "wrapper for express app to work with http2 protocol",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
"clean": "del-cli --force lib",
"compile": "babel src --out-dir lib",
"pre": "npm run clean && npm run compile && echo {\"type\": \"commonjs\"} > ./lib/package.json"
},
"author": "Rahul R <[email protected]>",
"license": "MIT",
"keywords": [
"express",
"http2",
"server-push",
"https",
"workaround",
"fix",
"compatibility",
"IncomingMessage",
"ServerResponse"
],
"dependencies": {
"merge-descriptors": "^1.0.1",
"send": "^0.17.1",
"setprototypeof": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.45",
"after": "0.8.2",
"babel-plugin-add-module-exports": "^1.0.4",
"connect-redis": "3.4.2",
"cookie-parser": "~1.4.4",
"cookie-session": "1.3.3",
"del-cli": "^3.0.1",
"ejs": "2.7.2",
"express": "^4.17.1",
"express-session": "1.17.0",
"hbs": "^4.1.2",
"marked": "0.7.0",
"method-override": "3.0.0",
"mocha": "^8.3.0",
"morgan": "1.9.1",
"nodemon": "^2.0.7",
"pbkdf2-password": "1.2.1",
"should": "13.2.3",
"supertest": "4.0.2",
"typescript": "^4.1.5",
"vhost": "~3.0.2"
},
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rahulramesha/http2-express-bridge.git"
},
"bugs": {
"url": "https://github.com/rahulramesha/http2-express-bridge/issues"
},
"homepage": "https://github.com/rahulramesha/http2-express-bridge#readme"
}