forked from webtorrent/instant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.99 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
{
"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.0.9",
"cors": "^2.7.1",
"create-torrent": "^3.22.0",
"debug": "^3.1.0",
"drag-drop": "^2.0.0",
"express": "^4.8.5",
"moment": "^2.15.1",
"opbeat": "^4.16.0",
"prettier-bytes": "^1.0.3",
"pug": "^2.0.0-beta11",
"simple-get": "^2.4.0",
"throttleit": "^1.0.0",
"thunky": "^1.0.0",
"twilio": "^3.7.0",
"upload-element": "^1.0.1",
"webtorrent": "0.x"
},
"devDependencies": {
"browserify": "^14.0.0",
"nodemon": "^1.2.1",
"standard": "*",
"stylus": "^0.54.0",
"watchify": "^3.1.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",
"secret-download": "rsync -a -O -v --delete -e \"ssh -p 44444\" feross@webtorrent:\"/home/feross/www/instant.io/secret/\" secret/",
"secret-upload": "rsync -a -O -v --delete -e \"ssh -p 44444\" secret/ feross@webtorrent:/home/feross/www/instant.io/secret/",
"size": "npm run build-js && cat static/bundle.js | gzip | wc -c",
"start": "npm run build && node server",
"test": "standard",
"update-authors": "./bin/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"
}
}