-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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": "ddatabase",
"version": "5.0.0",
"description": "Distributed append-only data log that can be exchanged between peers on the dWeb.",
"main": "index.js",
"dependencies": {
"abstract-extension": "^3.0.1",
"atomic-batcher": "^1.0.2",
"bitfield-rle": "^2.2.1",
"bulk-write-stream": "^1.1.3",
"codecs": "^2.0.0",
"fast-bitfield": "^1.2.2",
"flat-tree": "^1.6.0",
"from2": "^2.3.0",
"ddatabase-cache": "git://github.com/DistributedWeb/ddatabase-cache.git#db95e214db76f10e77bf45672c84faf2eccb6725",
"ddatabase-crypto": "git://github.com/DistributedWeb/ddatabase-crypto.git#cb6ad0a594998b258fe62531643c66cab1e9fd9e",
"ddatabase-protocol": "git://github.com/DistributedWeb/ddatabase-protocol.git#c8fc78683af50435c5c8c995d55a77c1b52cb127",
"inherits": "^2.0.3",
"inspect-custom-symbol": "^1.1.0",
"last-one-wins": "^1.0.4",
"memory-pager": "^1.0.2",
"merkle-tree-stream": "^3.0.3",
"nanoguard": "^1.2.0",
"nanoresource": "git://github.com/DistributedWeb/nanoresource.git#5da8c3be3ce40614eb6ad5025200a5e9adcb1cc3",
"pretty-hash": "^1.0.1",
"random-access-file": "^2.1.0",
"sparse-bitfield": "^3.0.0",
"timeout-refresh": "^1.0.1",
"uint64be": "^2.0.1",
"unordered-array-remove": "^1.0.2",
"unordered-set": "^2.0.0"
},
"devDependencies": {
"nyc": "^14.1.1",
"random-access-memory": "^3.1.0",
"shuffle-array": "^1.0.1",
"speedometer": "^1.0.0",
"standard": "^14.3.4",
"stream-collector": "^1.0.1",
"tape": "^4.6.3"
},
"optionalDependencies": {
"fd-lock": "^1.0.2"
},
"browser": {
"fd-lock": false
},
"scripts": {
"test": "standard && tape test/*.js",
"cov": "nyc tape test/*.js",
"bench": "cd bench && ./all.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/distributedweb/ddatabase.git"
},
"author": "Peeps Labs <peepslabs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/distributedweb/ddatabase/issues"
},
"homepage": "https://github.com/distributedweb/ddatabase"
}