bittorrent-tracker/package.json

117 lines
2.6 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",
"version": "10.0.3",
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"
},
"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,
"socks": false
},
"chromeapp": {
"./server.js": false,
2021-09-01 18:27:58 +00:00
"dgram": "chrome-dgram",
"socks": false
},
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
},
"type": "module",
2014-03-26 08:17:54 +00:00
"dependencies": {
"@thaunknown/simple-websocket": "^9.1.0",
"bencode": "^3.0.3",
2021-05-24 04:25:19 +00:00
"bittorrent-peerid": "^1.3.3",
"chrome-dgram": "^3.0.6",
"clone": "^2.0.0",
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",
"run-parallel": "^1.2.0",
"run-series": "^1.1.9",
"simple-get": "^4.0.0",
2021-05-24 04:25:19 +00:00
"simple-peer": "^9.11.0",
"socks": "^2.0.0",
"string2compact": "^2.0.0",
2023-05-26 16:54:30 +00:00
"uint8-util": "^2.1.9",
"unordered-array-remove": "^1.0.2",
"ws": "^8.0.0"
2014-03-26 08:17:54 +00:00
},
"devDependencies": {
2023-01-30 03:17:11 +00:00
"@mapbox/node-pre-gyp": "1.0.10",
"@webtorrent/semantic-release-config": "1.0.9",
"magnet-uri": "7.0.3",
"semantic-release": "20.1.3",
2016-08-26 01:56:49 +00:00
"standard": "*",
"tape": "5.6.3",
"webtorrent-fixtures": "2.0.2",
2021-05-31 03:38:08 +00:00
"wrtc": "0.4.7"
2014-03-26 08:17:54 +00:00
},
2019-08-05 21:54:20 +00:00
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
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": {
"bufferutil": "^4.0.3",
"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": {
2021-07-02 23:27:08 +00:00
"preversion": "npm run update-authors",
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-06-15 01:47:25 +00:00
},
"release": {
"extends": "@webtorrent/semantic-release-config"
2021-05-24 02:27:30 +00:00
}
2014-03-27 07:36:52 +00:00
}