mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 02:46:29 +00:00
78 lines
1.8 KiB
JSON
78 lines
1.8 KiB
JSON
{
|
|
"name": "bittorrent-tracker",
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
|
"version": "9.8.1",
|
|
"author": {
|
|
"name": "WebTorrent, LLC",
|
|
"email": "feross@webtorrent.io",
|
|
"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": "^3.1.0",
|
|
"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": "^5.0.0",
|
|
"xtend": "^4.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": "^3.0.0"
|
|
},
|
|
"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": "./bin/update-authors.sh",
|
|
"test": "standard && tape test/*.js"
|
|
}
|
|
}
|