forked from goldhand/sw-precache-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
71
72
73
74
75
76
77
78
{
"name": "sw-precache-webpack-plugin",
"version": "0.11.5",
"description": "Webpack plugin for using service workers",
"main": "lib/index.js",
"scripts": {
"prepare": "make build",
"version": "make changelog && git add -p CHANGELOG.md && git checkout CHANGELOG.md",
"test:unit": "make unit_test",
"test:integration": "make integration_test",
"test": "make test"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"webpack",
"plugin",
"precache",
"sw-precache",
"service",
"worker"
],
"tags": [
"webpack",
"plugin",
"precache",
"sw-precache",
"service",
"worker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goldhand/sw-precache-webpack-plugin.git"
},
"author": "Will Farley <[email protected]> (http://www.willfarley.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldhand/sw-precache-webpack-plugin/issues"
},
"homepage": "https://github.com/goldhand/sw-precache-webpack-plugin#readme",
"directories": {
"example": "./examples",
"lib": "./src",
"test": "./test"
},
"peerDependencies": {
"webpack": "^1 || ^2 || ^2.1.0-beta || ^2.2.0-beta || ^3 || ^4"
},
"dependencies": {
"del": "^3.0.0",
"sw-precache": "git+https://github.com/Osirisxxl/sw-precache#b22249346baed8df92a9c5f7b6f76a29edf6bc49",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"eslint": "^4.18.1",
"git-release-notes": "2.1.0",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"sinon": "^4.4.2",
"webpack": "^4.0.1"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
}
}