forked from kenchris/jakecache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "jakecache",
"version": "1.1.1",
"description": "Declarative manifest-driven app cache top of ServiceWorker",
"files": [
"dist/jakecache.js",
"dist/jakecache-sw.js"
],
"scripts": {
"build": "rollup -c",
"test": "node test/index.js",
"prepublish": "npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenchris/jakecache.git"
},
"keywords": [
"serviceworker",
"appcache"
],
"author": "Kenneth Rohde Christiansen <kenneth.christiansen@gmail.com>",
"contributors": [
{
"name": "Kenneth Auchenberg",
"email": "kenneth@auchenberg.dk"
}
],
"license": "See License in LICENSE.md",
"bugs": {
"url": "https://github.com/kenchris/jakecache/issues"
},
"homepage": "https://github.com/kenchris/jakecache#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.16.2",
"rollup-plugin-terser": "^5.0.0",
"tape": "^4.5.1"
},
"dependencies": {
"idb-keyval": "^3.2.0"
}
}