bittorrent-tracker/package.json

83 lines
1.9 KiB
JSON
Raw Normal View History

2014-03-26 08:17:54 +00:00
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
2020-03-29 19:08:35 +00:00
"version": "9.14.5",
2014-03-26 08:17:54 +00:00
"author": {
2017-04-14 19:50:19 +00:00
"name": "WebTorrent, LLC",
"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"
},
"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
},
"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",
"bittorrent-peerid": "^1.3.2",
"bn.js": "^5.1.1",
"chrome-dgram": "^3.0.4",
"compact2string": "^1.4.1",
"debug": "^4.1.1",
"ip": "^1.1.5",
"lru": "^3.1.0",
"minimist": "^1.2.5",
"once": "^1.4.0",
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",
"run-parallel": "^1.1.9",
"run-series": "^1.1.8",
"simple-get": "^3.1.0",
"simple-peer": "^9.7.1",
"simple-websocket": "^8.1.1",
"string2compact": "^1.3.0",
"unordered-array-remove": "^1.0.2",
2020-05-10 18:38:35 +00:00
"ws": "^7.3.0"
2014-03-26 08:17:54 +00:00
},
"devDependencies": {
2020-05-10 18:38:35 +00:00
"magnet-uri": "^5.2.4",
2016-08-26 01:56:49 +00:00
"standard": "*",
"tape": "^5.0.0",
2020-05-10 18:38:35 +00:00
"webtorrent-fixtures": "^1.7.3",
"wrtc": "^0.4.4"
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": {
2020-05-10 18:38:35 +00:00
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
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"
2014-03-26 08:17:54 +00:00
}
2014-03-27 07:36:52 +00:00
}