-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "razzle-plugin-serviceworker",
"version": "1.0.2",
"description": "A serviceworker for Razzle using offline-plugin.",
"main": "index.js",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint . --ext .js --ignore-pattern node_modules/",
"coveralls": "jest --forceExit --detectOpenHandles --coverage && cat ./coverage/lcov.info | coveralls"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gnarr/razzle-plugin-serviceworker.git"
},
"keywords": [
"razzle",
"plugin",
"offline",
"serviceworker",
"service-worker"
],
"author": "Gunnar Cortes Heimisson <[email protected]> (https://twitter.com/xgnarrx)",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnarr/razzle-plugin-serviceworker/issues"
},
"homepage": "https://github.com/gnarr/razzle-plugin-serviceworker#readme",
"dependencies": {
"offline-plugin": "^5.0.7"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"eslint-plugin-jest": "^23.0.4",
"jest": "^25.1.0",
"razzle": "^3.0.0"
}
}