forked from sethvincent/random-access-idb
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "random-access-idb",
"description": "[random-access][1]-compatible indexedDB storage layer",
"version": "1.3.1",
"main": "index.js",
"dependencies": {
"random-access-storage": "^1.4.1",
"buffer-alloc": "^1.2.0",
"buffer-from": "^0.1.1",
"inherits": "^2.0.4",
"mutexify": "^1.3.1",
"next-tick": "^1.0.0",
"once": "^1.4.0"
},
"devDependencies": {
"browser-run": "^8.0.0",
"browserify": "^16.5.2",
"random-access-memory": "^3.1.1",
"randombytes": "^2.1.0",
"tape": "^5.0.1"
},
"scripts": {
"test": "browserify test/index.js | browser-run",
"build-example": "browserify example/hello.js > example/bundle.js && start example/index.html"
},
"keywords": [
"random-access",
"abstract-random-access",
"indexeddb",
"idb",
"browser",
"storage"
],
"author": "substack",
"license": "BSD"
}