-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "idb-chunk-store",
"description": "IndexedDB chunk store that is abstract-chunk-store compliant",
"version": "1.0.1",
"author": "Santiago Gil (@_santiagogil_)",
"bugs": {
"url": "https://github.com/SocketDev/idb-chunk-store/issues"
},
"dependencies": {
"idb": "^6.1.2",
"queue-microtask": "^1.2.3"
},
"devDependencies": {
"abstract-chunk-store": "^1.5.0",
"airtap": "^4.0.3",
"airtap-manual": "^1.0.0",
"airtap-sauce": "^1.1.2",
"standard": "^16.0.3",
"tape": "^5.2.2"
},
"homepage": "https://github.com/SocketDev/idb-chunk-store",
"keywords": [
"abstract-chunk-store",
"chunk",
"idb",
"indexeddb",
"store"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/SocketDev/idb-chunk-store.git"
},
"scripts": {
"test": "standard && npm run test-browser",
"test-browser": "airtap --concurrency 1 -- test.js",
"test-browser-local": "airtap airtap --preset local -- test.js"
}
}