-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (61 loc) · 2.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "indexeddb",
"version": "0.0.1",
"description":
"A pure-JavaScript implementation of IndexedDB that is durable and scalable.",
"keywords":
[
"btree", "leveldb", "levelup", "binary", "mvcc",
"database", "json", "b-tree", "concurrent", "persistence",
"durable"
],
"author": "Alan Gutierrez <[email protected]>",
"contributors": [],
"homepage": "https://github.com/bigeasy/indexeddb",
"bugs": "https://github.com/bigeasy/indexeddb/issues",
"repository":
{
"type": "git",
"url": "bigeasy/indexeddb"
},
"dependencies":
{
"avenue": "0.6.17",
"cadence": "4.0.0-alpha.5",
"comeuppance": "0.0.3",
"domexception": "4.0.0",
"memento": "^0.1.47",
"jsdom": "18.0.1",
"lodash.isplainobject": "4.0.6",
"nop": "1.0.0",
"perhaps": "0.0.12",
"turnstile": "6.0.0-alpha.82",
"rescue": "7.0.0-alpha.18",
"verbatim": "0.1.8"
},
"devDependencies":
{
"arguable": "13.0.0-alpha.6",
"cheerio": "1.0.0-rc.10",
"programmatic": "2.0.0-alpha.11",
"proof": "^9.0.3",
"rimraf": "3.0.2",
"webidl2js": "17.0.0"
},
"main": "indexeddb",
"nyc":
{
},
"scripts":
{
"test": "proof test/*.t.js"
},
"nyc":
{
"exclude": [
"test/**",
"living/**",
"utils.js"
]
}
}