-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
61 lines (61 loc) · 1.3 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
{
"name": "h2-auto-push",
"version": "0.3.1",
"description": "HTTP/2 auto-push library",
"main": "build/src/index.js",
"types": "build/src/index",
"files": [
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"build/src"
],
"scripts": {
"test": "nyc ava",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check && npm run license-check",
"license-check": "jsgl --local ."
},
"engines": {
"node": ">=9.4.0 || >8.9.4 <9"
},
"keywords": [
"http2",
"auto-push",
"server-push"
],
"author": "Google LLC",
"license": "Apache-2.0",
"repository": "github:google/node-h2-auto-push",
"ava": {
"files": [
"build/test/*-test.js"
]
},
"nyc": {
"exclude": [
"build/test"
]
},
"dependencies": {
"bloomfilter": "^0.0.16"
},
"devDependencies": {
"@types/get-port": "^3.2.0",
"@types/node": "^9.4.1",
"@types/semver": "^5.5.0",
"ava": "^0.25.0",
"codecov": "^3.0.0",
"get-port": "^3.2.0",
"gts": "^0.5.3",
"js-green-licenses": "^0.5.0",
"nyc": "^11.4.1",
"typescript": "~2.7.1"
}
}