forked from GoogleChromeLabs/sw-precache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.6 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": "sw-precache",
"version": "5.2.1",
"description": "Generates a service worker to cache your local App Shell resources.",
"author": {
"name": "Jeff Posnick",
"email": "[email protected]",
"url": "https://jeffy.info"
},
"homepage": "https://github.com/googlechrome/sw-precache",
"main": "lib/sw-precache.js",
"keywords": [
"caching",
"offline",
"precaching",
"service-worker",
"serviceworker",
"appshell",
"pwa"
],
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"del": "^2.2.2",
"eslint": "^3.15.0",
"eslint-config-google": "^0.7.1",
"express": "^4.14.1",
"gh-pages": "^0.12.0",
"grunt": "^1.0.1",
"gulp": "^3.9.1",
"gulp-doctoc": "^0.1.4",
"gulp-eslint": "^3.0.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.8",
"jade": "^1.11.0",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"run-sequence": "^1.2.2"
},
"dependencies": {
"dom-urls": "^1.1.0",
"es6-promise": "^4.0.5",
"glob": "^7.1.1",
"lodash.defaults": "^4.2.0",
"lodash.template": "^4.4.0",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"pretty-bytes": "^4.0.2",
"sw-toolbox": "^3.4.0",
"update-notifier": "^2.3.0"
},
"repository": "googlechrome/sw-precache",
"bugs": "https://github.com/googlechrome/sw-precache/issues",
"license": "Apache-2.0",
"scripts": {
"test": "gulp test lint",
"doctoc": "doctoc"
},
"files": [
"cli.js",
"lib",
"service-worker.tmpl"
],
"bin": {
"sw-precache": "cli.js"
}
}