forked from libp2p/js-libp2p-kad-dht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "libp2p-kad-dht",
"version": "0.10.0",
"description": "JavaScript implementation of the Kad-DHT for libp2p",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"test": "aegir test -t node",
"build": "aegir build",
"docs": "aegir docs",
"release": "aegir release --docs -t node",
"release-minor": "aegir release --type minor --docs -t node",
"release-major": "aegir release --type major --docs -t node",
"coverage": "aegir coverage",
"coverage-publish": "aegir-coverage publish"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-kad-dht.git"
},
"keywords": [
"IPFS"
],
"author": "Friedel Ziegelmayer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-kad-dht/issues"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/libp2p/js-libp2p-kad-dht",
"dependencies": {
"async": "^2.6.0",
"base32.js": "^0.1.0",
"cids": "~0.5.3",
"debug": "^3.1.0",
"hashlru": "^2.2.1",
"heap": "^0.2.6",
"interface-datastore": "~0.4.2",
"k-bucket": "^4.0.0",
"libp2p-crypto": "~0.13.0",
"libp2p-record": "~0.5.1",
"multihashing-async": "~0.4.8",
"peer-id": "~0.10.7",
"peer-info": "~0.14.0",
"priorityqueue": "^0.2.1",
"protons": "^1.0.1",
"pull-length-prefixed": "^1.3.0",
"pull-stream": "^3.6.7",
"varint": "^5.0.0",
"xor-distance": "^1.0.0"
},
"devDependencies": {
"aegir": "^13.0.6",
"chai": "^4.1.2",
"datastore-level": "~0.7.0",
"dirty-chai": "^2.0.1",
"interface-connection": "~0.3.2",
"libp2p-mplex": "~0.7.0",
"libp2p-switch": "~0.39.0",
"libp2p-tcp": "~0.12.0",
"lodash": "^4.17.5",
"lodash.random": "^3.2.0",
"lodash.range": "^3.2.0",
"peer-book": "~0.7.0",
"pre-commit": "^1.2.2",
"safe-buffer": "^5.1.1"
},
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Richard Schneider <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}