-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
101 lines (101 loc) · 3.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "webtorrent.io",
"version": "0.0.1",
"author": {
"name": "WebTorrent, LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"browserify": {
"transform": [
"brfs"
]
},
"bugs": {
"url": "https://github.com/webtorrent/webtorrent.io/issues"
},
"dependencies": {
"basic-auth": "2.0.1",
"body-parser": "1.20.1",
"compression": "1.7.4",
"cors": "2.8.5",
"discord-irc": "2.9.0",
"domready": "1.0.8",
"express": "4.18.2",
"express-rate-limit": "6.7.0",
"gitter-irc-bot": "1.6.0",
"highlight.js": "11.7.0",
"moment": "2.29.4",
"morgan": "1.10.0",
"multer": "1.4.4",
"p2p-graph": "2.0.0",
"prettier-bytes": "1.0.4",
"pug": "3.0.2",
"remarkable": "2.0.1",
"rollbar": "2.26.0",
"run-parallel-limit": "1.1.0",
"semver": "7.3.8",
"serve-index": "1.9.1",
"simple-get": "4.0.1",
"throttleit": "1.0.0",
"webtorrent": "1.9.7"
},
"devDependencies": {
"brfs": "2.0.2",
"browserify": "17.0.0",
"husky": "8.0.3",
"nodemon": "2.0.22",
"standard": "*",
"stylus": "0.60.0",
"watchify": "4.0.0"
},
"homepage": "https://webtorrent.io",
"keywords": [
"bittorrent",
"bittorrent client",
"download",
"mad science",
"streaming",
"torrent",
"webrtc",
"webtorrent"
],
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/webtorrent.io.git"
},
"standard": {
"ignore": [
"tmp"
]
},
"scripts": {
"build": "npm run build-css && npm run build-js && npm run build-webtorrent",
"build-css": "stylus --include-css client/style.styl -o static/ -c",
"build-js": "browserify client > static/bundle.js",
"build-webtorrent": "rm -rf tmp && mkdir tmp && git clone https://github.com/webtorrent/webtorrent.git tmp/webtorrent",
"deploy": "./tools/trigger-deploy.sh",
"prepare": "husky install",
"secret-download": "rsync -a -O -v --delete -e \"ssh\" feross@webtorrent:\"/home/feross/www/webtorrent.io/secret/\" secret/",
"secret-upload": "rsync -a -O -v --delete -e \"ssh\" secret/ feross@webtorrent:/home/feross/www/webtorrent.io/secret/",
"size": "npm run size-js && npm run size-css",
"size-css": "npm run build-css && cat static/style.css | gzip | wc -c",
"size-js": "npm run build-js && cat static/bundle.js | gzip | wc -c",
"start": "node server",
"static-download": "rsync -a -O -v --delete -e \"ssh\" feross@webtorrent:\"/home/feross/www/webtorrent.io/static/torrents/\" static/torrents/",
"static-upload": "rsync -a -O -v --delete -e \"ssh\" static/torrents/ feross@webtorrent:/home/feross/www/webtorrent.io/static/torrents/",
"test": "standard",
"watch": "npm run watch-css & npm run watch-js & npm run watch-server",
"watch-css": "stylus --include-css client/style.styl -o static/ -w",
"watch-js": "watchify client -o static/bundle.js -dv",
"watch-server": "DEBUG=webtorrent*,bittorrent* nodemon server -e js,json,pug -i client/ -i static/ -i logs/"
},
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
}
}