-
-
Notifications
You must be signed in to change notification settings - Fork 440
/
package.json
92 lines (92 loc) · 2.54 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
{
"name": "instant.io",
"description": "Secure, anonymous, streaming file transfer",
"version": "1.0.0",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/webtorrent/instant.io/issues"
},
"dependencies": {
"compression": "1.7.4",
"cors": "2.8.5",
"create-torrent": "5.0.9",
"date-fns": "2.30.0",
"debug": "4.3.4",
"drag-drop": "7.2.0",
"escape-html": "1.0.3",
"express": "4.18.2",
"jszip": "3.10.1",
"prettier-bytes": "1.0.4",
"pug": "3.0.2",
"rollbar": "2.26.2",
"simple-get": "4.0.1",
"simple-peer": "9.11.1",
"throttleit": "1.0.0",
"thunky": "1.1.0",
"upload-element": "1.0.1",
"webtorrent": "1.9.7"
},
"devDependencies": {
"browserify": "17.0.0",
"husky": "8.0.3",
"nodemon": "3.1.0",
"standard": "*",
"stylus": "0.62.0",
"watchify": "4.0.0"
},
"homepage": "https://instant.io",
"keywords": [
"data channel",
"file transfer",
"p2p",
"webrtc"
],
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/instant.io.git"
},
"scripts": {
"build": "npm run build-css && npm run build-js",
"build-css": "stylus css/main.styl -o static/ -c",
"build-js": "browserify client > static/bundle.js",
"deploy": "./tools/trigger-deploy.sh",
"prepare": "husky install",
"secret-download": "rsync -a -O -v --delete feross@webtorrent:\"/home/feross/www/instant.io/secret/\" secret/",
"secret-upload": "rsync -a -O -v --delete secret/ feross@webtorrent:/home/feross/www/instant.io/secret/",
"size": "npm run size-js && npm run size-css",
"size-css": "npm run build-css && cat static/main.css | gzip | wc -c",
"size-js": "npm run build-js && cat static/bundle.js | gzip | wc -c",
"start": "node server",
"test": "standard",
"update-authors": "./tools/update-authors.sh",
"watch": "npm run watch-css & npm run watch-js & DEBUG=instant* nodemon server",
"watch-css": "stylus css/main.styl -o static/ -w",
"watch-js": "watchify client -o static/bundle.js -dv"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
}
}