2014-03-26 08:17:54 +00:00
|
|
|
{
|
|
|
|
"name": "bittorrent-tracker",
|
|
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
2021-04-12 23:14:42 +00:00
|
|
|
"version": "9.17.0",
|
2014-03-26 08:17:54 +00:00
|
|
|
"author": {
|
2020-05-17 19:38:46 +00:00
|
|
|
"name": "WebTorrent LLC",
|
2017-04-14 19:50:19 +00:00
|
|
|
"email": "feross@webtorrent.io",
|
|
|
|
"url": "https://webtorrent.io"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
2015-03-20 04:52:58 +00:00
|
|
|
"bin": {
|
|
|
|
"bittorrent-tracker": "./bin/cmd.js"
|
|
|
|
},
|
2015-03-24 08:52:21 +00:00
|
|
|
"browser": {
|
2015-10-24 00:31:34 +00:00
|
|
|
"./lib/common-node.js": false,
|
|
|
|
"./lib/client/http-tracker.js": false,
|
|
|
|
"./lib/client/udp-tracker.js": false,
|
|
|
|
"./server.js": false
|
2015-03-24 08:52:21 +00:00
|
|
|
},
|
2019-08-08 01:39:04 +00:00
|
|
|
"chromeapp": {
|
|
|
|
"./server.js": false,
|
|
|
|
"dgram": "chrome-dgram"
|
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"bugs": {
|
2017-04-14 19:50:19 +00:00
|
|
|
"url": "https://github.com/webtorrent/bittorrent-tracker/issues"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-05-10 18:38:35 +00:00
|
|
|
"bencode": "^2.0.1",
|
2021-05-24 04:25:19 +00:00
|
|
|
"bittorrent-peerid": "^1.3.3",
|
2021-05-24 10:40:52 +00:00
|
|
|
"bn.js": "^5.2.0",
|
2021-05-24 04:25:06 +00:00
|
|
|
"chrome-dgram": "^3.0.6",
|
2020-05-10 18:38:35 +00:00
|
|
|
"compact2string": "^1.4.1",
|
|
|
|
"debug": "^4.1.1",
|
|
|
|
"ip": "^1.1.5",
|
|
|
|
"lru": "^3.1.0",
|
|
|
|
"minimist": "^1.2.5",
|
|
|
|
"once": "^1.4.0",
|
2021-05-24 04:25:19 +00:00
|
|
|
"queue-microtask": "^1.2.3",
|
2015-05-19 11:32:09 +00:00
|
|
|
"random-iterate": "^1.0.1",
|
2020-05-10 18:38:35 +00:00
|
|
|
"randombytes": "^2.1.0",
|
2021-05-24 04:25:37 +00:00
|
|
|
"run-parallel": "^1.2.0",
|
2021-05-24 04:25:13 +00:00
|
|
|
"run-series": "^1.1.9",
|
2020-05-15 18:22:22 +00:00
|
|
|
"simple-get": "^4.0.0",
|
2021-05-24 04:25:19 +00:00
|
|
|
"simple-peer": "^9.11.0",
|
2021-05-24 08:47:09 +00:00
|
|
|
"simple-websocket": "^9.1.0",
|
2020-05-10 18:38:35 +00:00
|
|
|
"string2compact": "^1.3.0",
|
2017-02-14 01:27:16 +00:00
|
|
|
"unordered-array-remove": "^1.0.2",
|
2021-05-24 04:25:51 +00:00
|
|
|
"ws": "^7.4.5"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-24 08:47:14 +00:00
|
|
|
"magnet-uri": "^6.2.0",
|
2016-08-26 01:56:49 +00:00
|
|
|
"standard": "*",
|
2021-05-24 04:25:24 +00:00
|
|
|
"tape": "^5.2.2",
|
2020-05-10 18:38:35 +00:00
|
|
|
"webtorrent-fixtures": "^1.7.3",
|
2021-05-24 04:24:59 +00:00
|
|
|
"wrtc": "^0.4.7"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
2019-08-05 21:54:20 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=10"
|
2017-03-03 13:00:55 +00:00
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"keywords": [
|
|
|
|
"bittorrent",
|
|
|
|
"p2p",
|
2015-12-21 22:35:24 +00:00
|
|
|
"peer",
|
|
|
|
"peer-to-peer",
|
|
|
|
"stream",
|
|
|
|
"torrent",
|
|
|
|
"tracker",
|
|
|
|
"wire"
|
2014-03-26 08:17:54 +00:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "index.js",
|
2019-08-05 21:54:20 +00:00
|
|
|
"optionalDependencies": {
|
2021-05-24 02:27:48 +00:00
|
|
|
"bufferutil": "^4.0.3",
|
2021-05-24 12:43:18 +00:00
|
|
|
"utf-8-validate": "^5.0.5"
|
2019-08-05 21:54:20 +00:00
|
|
|
},
|
2014-03-26 08:17:54 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-04-14 19:50:19 +00:00
|
|
|
"url": "git://github.com/webtorrent/bittorrent-tracker.git"
|
2014-03-26 08:17:54 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-08-05 21:54:20 +00:00
|
|
|
"test": "standard && tape test/*.js",
|
|
|
|
"update-authors": "./tools/update-authors.sh"
|
2020-05-17 19:38:46 +00:00
|
|
|
},
|
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/feross"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "patreon",
|
|
|
|
"url": "https://www.patreon.com/feross"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "consulting",
|
|
|
|
"url": "https://feross.org/support"
|
|
|
|
}
|
2021-05-24 02:23:55 +00:00
|
|
|
],
|
|
|
|
"renovate": {
|
|
|
|
"extends": [
|
|
|
|
"github>webtorrent/renovate-config"
|
2021-05-24 12:45:14 +00:00
|
|
|
]
|
2021-05-24 02:27:30 +00:00
|
|
|
}
|
2014-03-27 07:36:52 +00:00
|
|
|
}
|