forked from webtorrent/bittorrent-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "4.3.2",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bin": {
"bittorrent-tracker": "./bin/cmd.js"
},
"browser": {
"./lib/common-node": false,
"./lib/http-tracker": false,
"./lib/udp-tracker": false,
"./server": false
},
"bugs": {
"url": "https://github.com/feross/bittorrent-tracker/issues"
},
"dependencies": {
"bencode": "^0.7.0",
"bn.js": "^2.0.0",
"buffer-equal": "0.0.1",
"compact2string": "^1.2.0",
"debug": "^2.0.0",
"hat": "0.0.3",
"inherits": "^2.0.1",
"ip": "^0.3.0",
"minimist": "^1.1.1",
"once": "^1.3.0",
"run-series": "^1.0.2",
"simple-get": "^1.3.0",
"simple-peer": "^5.0.0",
"simple-websocket": "^2.0.0",
"string2compact": "^1.1.1",
"ws": "^0.7.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"magnet-uri": "^4.0.0",
"parse-torrent": "^4.0.0",
"standard": "^3.2.0",
"tape": "^4.0.0"
},
"homepage": "http://webtorrent.io",
"keywords": [
"torrent",
"bittorrent",
"tracker",
"stream",
"peer",
"wire",
"p2p",
"peer-to-peer"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/bittorrent-tracker.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
}