forked from GoogleChromeLabs/http2-push-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "http2-push-manifest",
"version": "1.0.1",
"description": "Generate a list of static resources for http2 push and preload.",
"homepage": "https://github.com/GoogleChrome/http2-push-manifest",
"author": "Eric Bidelman <ebidel@>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChrome/http2-push-manifest"
},
"bugs": {
"url": "https://github.com/GoogleChrome/http2-push-manifest/issues"
},
"keywords": [
"http2",
"http2 push",
"performance"
],
"main": "lib/manifest.js",
"bin": {
"http2-push-manifest": "bin/http2-push-manifest"
},
"engines": {
"node": ">=4.0"
},
"scripts": {
"lint": "jshint --verbose lib",
"test": "npm run lint; mocha"
},
"dependencies": {
"dom5": "^1.1.1",
"hydrolysis": "1.22.0",
"nopt": "^3.0.4",
"vulcanize": "^1.13.1"
},
"devDependencies": {
"jshint": "^2.8.0",
"mocha": "^2.3.3"
},
"optionalDependencies": {
"update-notifier": "^0.5.0"
}
}