2014-03-26 01:17:54 -07:00
|
|
|
{
|
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2019-08-01 18:51:44 -07:00
|
|
|
"version": "9.12.1",
|
2014-03-26 01:17:54 -07:00
|
|
|
"author": {
|
2017-04-14 12:50:19 -07:00
|
|
|
"name": "WebTorrent, LLC",
|
|
|
|
|
"email": "feross@webtorrent.io",
|
|
|
|
|
"url": "https://webtorrent.io"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
2015-03-19 21:52:58 -07:00
|
|
|
"bin": {
|
|
|
|
|
"bittorrent-tracker": "./bin/cmd.js"
|
|
|
|
|
},
|
2015-03-24 01:52:21 -07:00
|
|
|
"browser": {
|
2015-10-23 17:31:34 -07:00
|
|
|
"./lib/common-node.js": false,
|
|
|
|
|
"./lib/client/http-tracker.js": false,
|
|
|
|
|
"./lib/client/udp-tracker.js": false,
|
|
|
|
|
"./server.js": false
|
2015-03-24 01:52:21 -07:00
|
|
|
},
|
2014-03-26 01:17:54 -07:00
|
|
|
"bugs": {
|
2017-04-14 12:50:19 -07:00
|
|
|
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2018-02-26 18:19:25 +00:00
|
|
|
"bencode": "^2.0.0",
|
2016-06-07 14:34:38 +02:00
|
|
|
"bittorrent-peerid": "^1.0.2",
|
2019-07-07 16:18:36 +00:00
|
|
|
"bn.js": "^5.0.0",
|
2014-03-26 01:17:54 -07:00
|
|
|
"compact2string": "^1.2.0",
|
2018-09-12 07:04:48 +00:00
|
|
|
"debug": "^4.0.1",
|
2015-09-18 15:49:35 -07:00
|
|
|
"ip": "^1.0.1",
|
2016-06-10 10:00:19 +02:00
|
|
|
"lru": "^3.0.0",
|
2015-03-19 21:47:47 -07:00
|
|
|
"minimist": "^1.1.1",
|
2014-07-21 22:58:13 -07:00
|
|
|
"once": "^1.3.0",
|
2015-05-19 04:32:09 -07:00
|
|
|
"random-iterate": "^1.0.1",
|
2016-08-20 19:37:36 -07:00
|
|
|
"randombytes": "^2.0.3",
|
2015-07-16 18:33:50 -07:00
|
|
|
"run-parallel": "^1.1.2",
|
2014-12-10 16:47:41 +01:00
|
|
|
"run-series": "^1.0.2",
|
2016-05-29 23:12:23 -07:00
|
|
|
"safe-buffer": "^5.0.0",
|
2018-04-24 21:43:50 +00:00
|
|
|
"simple-get": "^3.0.0",
|
2018-02-21 17:58:24 +00:00
|
|
|
"simple-peer": "^9.0.0",
|
2019-08-02 01:40:03 +00:00
|
|
|
"simple-websocket": "^8.0.0",
|
2015-03-24 01:52:21 -07:00
|
|
|
"string2compact": "^1.1.1",
|
2015-07-29 01:47:09 -07:00
|
|
|
"uniq": "^1.0.1",
|
2017-02-13 17:27:16 -08:00
|
|
|
"unordered-array-remove": "^1.0.2",
|
2019-04-30 16:14:33 +00:00
|
|
|
"ws": "^7.0.0"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2017-01-20 15:20:25 -08:00
|
|
|
"electron-webrtc": "^0.3.0",
|
2016-03-16 12:22:33 -07:00
|
|
|
"magnet-uri": "^5.1.3",
|
2016-08-25 18:56:49 -07:00
|
|
|
"standard": "*",
|
2016-03-16 12:22:33 -07:00
|
|
|
"tape": "^4.0.0",
|
|
|
|
|
"webtorrent-fixtures": "^1.3.0"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
2017-03-03 14:00:55 +01:00
|
|
|
"optionalDependencies": {
|
2018-07-26 23:02:45 -07:00
|
|
|
"bufferutil": "^4.0.0",
|
|
|
|
|
"utf-8-validate": "^5.0.1"
|
2017-03-03 14:00:55 +01:00
|
|
|
},
|
2014-03-26 01:17:54 -07:00
|
|
|
"keywords": [
|
|
|
|
|
"bittorrent",
|
|
|
|
|
"p2p",
|
2015-12-22 11:35:24 +13:00
|
|
|
"peer",
|
|
|
|
|
"peer-to-peer",
|
|
|
|
|
"stream",
|
|
|
|
|
"torrent",
|
|
|
|
|
"tracker",
|
|
|
|
|
"wire"
|
2014-03-26 01:17:54 -07:00
|
|
|
],
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2017-04-14 12:50:19 -07:00
|
|
|
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
|
2014-03-26 01:17:54 -07:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2018-05-01 16:32:42 -07:00
|
|
|
"update-authors": "./tools/update-authors.sh",
|
2015-01-26 18:16:01 -08:00
|
|
|
"test": "standard && tape test/*.js"
|
2014-03-26 01:17:54 -07:00
|
|
|
}
|
2014-03-27 00:36:52 -07:00
|
|
|
}
|