forked from webtorrent/bittorrent-dht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 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
{
"name": "bittorrent-dht",
"description": "Simple, robust, BitTorrent DHT implementation",
"version": "2.2.1",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bugs": {
"url": "https://github.com/feross/bittorrent-dht/issues"
},
"dependencies": {
"bencode": "^0.6.0",
"buffer-equal": "^0.0.1",
"compact2string": "^1.2.0",
"debug": "^1.0.0",
"hat": "^0.0.3",
"inherits": "^2.0.1",
"k-bucket": "^0.4.2",
"once": "^1.3.0",
"run-parallel": "^1.0.0",
"chrome-net": "^2.x.x",
"chrome-dgram": "^2.x.x",
"timers-ref": "^0.x.x",
"string2compact": "^1.1.1"
},
"devDependencies": {
"ip": "^0.3.0",
"tape": "^2.12.3"
},
"browser": {
"net": "./node_modules/chrome-net/index.js",
"dgram": "./node_modules/chrome-dgram/index.js",
"timers": "./node_modules/timers-ref/index.js"
},
"homepage": "http://webtorrent.io",
"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": {
"test": "tape test/*.js",
"test-live": "tape test/live/*.js"
}
}