forked from webtorrent/instant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "instant.io",
"description": "Secure, anonymous, streaming file transfer",
"version": "1.0.0",
"author": {
"name": "WebTorrent, LLC",
"email": "feross@webtorrent.io",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/webtorrent/instant.io/issues"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"create-torrent": "^4.4.2",
"date-fns": "^2.16.1",
"debug": "^4.2.0",
"drag-drop": "^6.1.0",
"escape-html": "^1.0.3",
"express": "^4.17.1",
"jszip": "^3.5.0",
"prettier-bytes": "^1.0.4",
"pug": "^3.0.0",
"rollbar": "^2.19.4",
"simple-get": "^4.0.0",
"simple-peer": "^9.7.2",
"throttleit": "^1.0.0",
"thunky": "^1.1.0",
"upload-element": "^1.0.1",
"webtorrent": "^0.109.2"
},
"devDependencies": {
"browserify": "^17.0.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"standard": "*",
"stylus": "^0.54.8",
"tinyify": "^3.0.0",
"watchify": "^3.11.1"
},
"homepage": "https://instant.io",
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"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 --plugin tinyify client > static/bundle.js",
"deploy": "./tools/trigger-deploy.sh",
"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": "npm run build && 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"
}
}