forked from mathiasvr/cache-storage-chunk-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "cache-storage-chunk-store",
"version": "1.1.0",
"description": "Browser CacheStorage chunk store that is abstract-chunk-store compliant",
"author": "Mathias Rasmussen <[email protected]>",
"license": "MIT",
"main": "index.js",
"keywords": [
"CacheStorage",
"browser",
"cache",
"chunk",
"store",
"abstract-chunk-store"
],
"homepage": "https://github.com/mathiasvr/cache-storage-chunk-store#readme",
"bugs": {
"url": "https://github.com/mathiasvr/cache-storage-chunk-store/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasvr/cache-storage-chunk-store.git"
},
"scripts": {
"test": "standard",
"web": "npx wzrd test.js",
"bundle": "webpack --mode=production --entry=./index.js --devtool=source-map --output-library=CacheStorageChunkStore --output-filename=cache-storage-chunk-store.min.js",
"prepare": "npm run bundle",
"prepublishOnly": "npm test"
},
"dependencies": {
"buffer": "^6.0.2"
},
"devDependencies": {
"abstract-chunk-store": "^1.0.0",
"browserify": "^17.0.0",
"standard": "^16.0.2",
"tape": "^5.0.1",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"files": [
"dist"
]
}