forked from xuset/indexeddb-chunk-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "indexeddb-chunk-store",
"version": "2.2.1",
"description": "A Chunk Store compatible store backed by IndexedDB",
"main": "index.js",
"scripts": {
"bundle": "standard && browserify -r . -s IdbChunkStore | uglifyjs -m > idbchunkstore.min.js",
"standard": "standard",
"test": "standard && karma start",
"karma": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuset/indexeddb-chunk-store.git"
},
"keywords": [
"abstract-chunk-store",
"chunk-store",
"idb-chunk-store",
"chunk",
"store",
"indexdb",
"indexeddb",
"idb"
],
"author": "xuset",
"license": "MIT",
"bugs": {
"url": "https://github.com/xuset/indexeddb-chunk-store/issues"
},
"homepage": "https://github.com/xuset/indexeddb-chunk-store#readme",
"dependencies": {
"idb-kv-store": "^4.3.1"
},
"devDependencies": {
"abstract-chunk-store": "^1.3.0",
"browserify": "^14.3.0",
"karma": "^1.6.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-sauce-launcher": "^1.1.0",
"karma-tap": "^3.1.1",
"run-parallel": "^1.1.6",
"standard": "^10.0.2",
"tape": "^4.6.3",
"uglify-js": "^3.0.0",
"watchify": "^3.8.0"
}
}