bittorrent-tracker/package.json
Feross Aboukhadijeh 06acb5e203 8.0.6
2016-05-25 13:49:38 -07:00

71 lines
1.6 KiB
JSON

{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "8.0.6",
"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.9.0",
"bn.js": "^4.4.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": {
"electron-webrtc": "^0.2.0",
"magnet-uri": "^5.1.3",
"standard": "^7.0.0",
"tape": "^4.0.0",
"webtorrent-fixtures": "^1.3.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": {
"update-authors": "./bin/update-authors.sh",
"test": "standard && tape test/*.js"
}
}