forked from webtorrent/bittorrent-dht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "bittorrent-dht",
"description": "Simple, robust, BitTorrent DHT implementation",
"version": "7.1.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bugs": {
"url": "https://github.com/feross/bittorrent-dht/issues"
},
"dependencies": {
"bencode": "^0.9.0",
"buffer-equals": "^1.0.3",
"debug": "^2.2.0",
"inherits": "^2.0.1",
"k-bucket": "^2.0.0",
"k-rpc": "^3.6.0",
"lru": "^2.0.0"
},
"devDependencies": {
"ed25519-supercop": "^1.0.0",
"ip": "^1.1.0",
"once": "^1.3.3",
"run-parallel": "^1.1.4",
"standard": "^7.0.0",
"tape": "^4.4.0"
},
"keywords": [
"torrent",
"bittorrent",
"dht",
"distributed hash table",
"protocol",
"peer",
"p2p",
"peer-to-peer"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/bittorrent-dht.git"
},
"scripts": {
"update-authors": "./bin/update-authors.sh",
"test": "standard && tape test/*.js",
"test-live": "tape test/live/*.js"
}
}