-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "sw-register-webpack-plugin",
"version": "1.0.22",
"description": "a webpack plugin for serviceWorker register and serviceWorker no-cache soultion",
"main": "index.js",
"scripts": {
"build": "sh build.sh",
"lint": "fecs index.js lib templates test examples --rule",
"test": "npm run lint && npm run build && ./node_modules/.bin/nyc ava"
},
"repository": {
"type": "git",
"url": "https://github.com/lavas-project/sw-register-webpack-plugin.git"
},
"keywords": [
"no-cache",
"plugin",
"serviceWorker",
"webpack",
"sw-regiser"
],
"author": "mj ([email protected])",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.3.4",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"ava": {
"concurrency": 5,
"failFast": true,
"files": [
"test/*.test.js"
],
"require": [
"@babel/register"
]
},
"devDependencies": {
"ava": "^0.18.2",
"@babel/cli": "^7.2.3",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"bluebird": "^3.4.7",
"fecs": "^1.4.0",
"html-webpack-plugin": "^3.2.0",
"memory-fs": "^0.4.1",
"nyc": "^10.3.2",
"rimraf": "^2.6.0",
"webpack": "^4.0.0"
}
}