This repository was archived by the owner on Apr 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
{
"name": "rollup-plugin-workbox-build",
"version": "0.2.0",
"description": "Rollup plugin that builds a service worker with workbox-build",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c && shx cp src/index.d.ts dist/",
"lint": "eslint src",
"prebuild": "shx rm -rf dist/*",
"prepare": "npm run lint && npm run build",
"security": "npm audit",
"watch": "rollup -cw"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"files": [
"dist"
],
"keywords": [
"rollup",
"rollup-plugin",
"service-worker",
"workbox"
],
"author": "Rainrider",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Rainrider/rollup-plugin-workbox-build.git"
},
"bugs": {
"url": "https://github.com/Rainrider/rollup-plugin-workbox-build/issues"
},
"homepage": "https://github.com/Rainrider/rollup-plugin-workbox-build/#readme",
"peerDependencies": {
"rollup": "1.x"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"rollup": "^1.16.7",
"shx": "^0.3.2"
},
"dependencies": {
"workbox-build": "^4.3.1"
}
}