-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "http2-express-autopush",
"version": "1.0.5",
"description": "http2 autopush middleware for express",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"test": "jest",
"clean": "del-cli --force lib",
"compile": "tsc -p tsconfig-cjs.json && tsc -p tsconfig.json",
"pre": "npm run clean && npm run compile"
},
"author": "rahulramesha <[email protected]>",
"license": "MIT",
"keywords": [
"express",
"http2",
"server-push",
"autopush",
"auto-push"
],
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"@types/serve-static": "^1.13.9",
"del-cli": "^3.0.1",
"express": "^4.17.1",
"http2-express-bridge": "^1.0.1",
"jest": "^26.6.3",
"safe-buffer": "^5.2.1",
"supertest": "^6.1.3",
"typescript": "^4.1.5"
},
"dependencies": {
"cookie": "^0.4.1",
"h2-auto-push": "^0.4.1",
"serve-static": "^1.14.1"
},
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rahulramesha/express-autopush.git"
},
"bugs": {
"url": "https://github.com/rahulramesha/express-autopush/issues"
},
"homepage": "https://github.com/rahulramesha/express-autopush#readme"
}