-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1013 Bytes
/
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": "sw-precache-webpack-dev-server-plugin",
"version": "1.1.0",
"description": "Webpack Plugin for using sw-precache during development with webpack-dev-server",
"license": "MIT",
"repository": "ragingwind/sw-precache-webpack-dev-server-plugin",
"author": {
"name": "ragingwind",
"email": "ragingwind@gmail.com",
"url": "ragingwind.me"
},
"engines": {
"node": ">=6"
},
"scripts": {
"start": "cd example && webpack-dev-server --config webpack.config.js --port 8000 && cd -"
},
"files": [
"index.js"
],
"keywords": [
"webpack",
"plugin",
"precache",
"sw-precache",
"service",
"worker",
"progressive",
"web",
"app"
],
"dependencies": {
"glob": "^7.1.1",
"is-path-inside": "^1.0.0",
"multimatch": "^2.1.0",
"sw-precache": "^4.3.0"
},
"devDependencies": {
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"copy-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^2.28.0"
}
}