-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
64
65
66
67
{
"name": "little-network-box",
"version": "0.2.0",
"description": "A little toolkit for distributed applications.",
"main": "index.js",
"bin": {
"little-network-box": "bin/little-network-box",
"lnb": "bin/little-network-box"
},
"scripts": {
"coverage": "nyc npm run test",
"test": "tape test/*.js"
},
"files": [
"bin/*",
"codecs/*",
"hooks/*",
"storage/*",
"*.js",
"*.proto"
],
"author": "Joseph Werle <[email protected]>",
"license": "MIT",
"dependencies": {
"batch": "^0.6.1",
"collect-stream": "^1.2.1",
"debug": "^4.1.1",
"duplexify": "^4.1.1",
"extend": "^3.0.2",
"get-uri": "^2.0.3",
"hypercore": "^8.4.1",
"hypercore-block-request": "^0.2.0",
"hypercore-indexed-file": "^0.1.2",
"hypercore-protocol": "^7.7.1",
"hypercore-ready": "^0.2.0",
"hypercore-replicate": "^0.3.0",
"hypercore-xsalsa20-onwrite-hook": "^1.0.2",
"hyperswarm": "^2.4.0",
"minimist": "^1.2.0",
"mutexify": "^1.2.0",
"nanoguard": "^1.2.1",
"pretty-bytes": "^5.3.0",
"pretty-hash": "^1.0.1",
"progress": "^2.0.3",
"pump": "^3.0.0",
"random-access-file": "^2.1.3",
"random-access-http": "^2.0.1",
"random-access-memory": "^3.1.1",
"random-access-s3": "^1.0.0",
"random-access-storage-from": "^0.1.1",
"rimraf": "^3.0.0",
"rpc-protocol": "^0.2.2",
"secretbox-encoding": "^0.2.0",
"tar-stream": "^2.1.0",
"thunky": "^1.0.3",
"to-buffer": "^1.1.1",
"xsalsa20-encoding": "^1.0.1"
},
"optionalDependencies": {},
"devDependencies": {
"buffer-json-encoding": "^1.0.2",
"hypertrie": "^4.0.0",
"nyc": "^14.1.1",
"passthrough-encoding": "^1.2.0",
"tape": "^4.11.0"
}
}