-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 900 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 900 Bytes
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
{
"name": "parcel-plugin-workbox-cache",
"version": "2.0.1",
"description": "An updated plugin for Parcel to generate a service worker with Workbox. Accepts a .workbox-config.js file",
"main": "index.js",
"repository": "https://github.com/nickimola/parcel-plugin-workbox-2019",
"author": "Nicholas Lazzerini <info@nicholaslazzerini.com>",
"license": "MIT",
"keywords": [
"parcel",
"workbox",
"serviceworker",
"pwa"
],
"scripts": {
"test": "eslint ."
},
"private": false,
"dependencies": {
"terser": "^4.8.0",
"workbox-build": "^4.3.1"
},
"peerDependencies": {
"parcel-bundler": "^1.8.1"
},
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0"
}
}