forked from webtorrent/bittorrent-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.82 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
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "9.10.1",
"author": {
"name": "WebTorrent, LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bin": {
"bittorrent-tracker": "./bin/cmd.js"
},
"browser": {
"./lib/common-node.js": false,
"./lib/client/http-tracker.js": false,
"./lib/client/udp-tracker.js": false,
"./server.js": false
},
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
},
"dependencies": {
"bencode": "^2.0.0",
"bittorrent-peerid": "^1.0.2",
"bn.js": "^4.4.0",
"compact2string": "^1.2.0",
"debug": "^4.0.1",
"inherits": "^2.0.1",
"ip": "^1.0.1",
"lru": "^3.0.0",
"minimist": "^1.1.1",
"once": "^1.3.0",
"random-iterate": "^1.0.1",
"randombytes": "^2.0.3",
"run-parallel": "^1.1.2",
"run-series": "^1.0.2",
"safe-buffer": "^5.0.0",
"simple-get": "^3.0.0",
"simple-peer": "^9.0.0",
"simple-websocket": "^7.0.1",
"string2compact": "^1.1.1",
"uniq": "^1.0.1",
"unordered-array-remove": "^1.0.2",
"ws": "^6.0.0"
},
"devDependencies": {
"electron-webrtc": "^0.3.0",
"magnet-uri": "^5.1.3",
"standard": "*",
"tape": "^4.0.0",
"webtorrent-fixtures": "^1.3.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
},
"keywords": [
"bittorrent",
"p2p",
"peer",
"peer-to-peer",
"stream",
"torrent",
"tracker",
"wire"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
},
"scripts": {
"update-authors": "./tools/update-authors.sh",
"test": "standard && tape test/*.js"
}
}