mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 19:06:27 +00:00
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"name": "bittorrent-tracker",
|
|
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
|
|
"version": "7.3.0",
|
|
"author": {
|
|
"name": "Feross Aboukhadijeh",
|
|
"email": "feross@feross.org",
|
|
"url": "http://feross.org/"
|
|
},
|
|
"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/feross/bittorrent-tracker/issues"
|
|
},
|
|
"dependencies": {
|
|
"bencode": "^0.7.0",
|
|
"bn.js": "^4.4.0",
|
|
"buffer-equal": "^1.0.0",
|
|
"compact2string": "^1.2.0",
|
|
"debug": "^2.0.0",
|
|
"hat": "0.0.3",
|
|
"inherits": "^2.0.1",
|
|
"ip": "^1.0.1",
|
|
"minimist": "^1.1.1",
|
|
"once": "^1.3.0",
|
|
"random-iterate": "^1.0.1",
|
|
"run-parallel": "^1.1.2",
|
|
"run-series": "^1.0.2",
|
|
"simple-get": "^2.0.0",
|
|
"simple-peer": "^6.0.0",
|
|
"simple-websocket": "^4.0.0",
|
|
"string2compact": "^1.1.1",
|
|
"uniq": "^1.0.1",
|
|
"ws": "^1.0.0",
|
|
"xtend": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"magnet-uri": "^5.0.0",
|
|
"parse-torrent": "^5.0.0",
|
|
"standard": "^6.0.4",
|
|
"tape": "^4.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/feross/bittorrent-tracker.git"
|
|
},
|
|
"scripts": {
|
|
"test": "standard && tape test/*.js"
|
|
}
|
|
}
|