This repository has been archived by the owner on Sep 5, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "whiteboard",
"description": "WebRTC Whiteboard",
"version": "1.0.0",
"author": "Feross Aboukhadijeh <[email protected]> (http://feross.org/)",
"bugs": {
"url": "https://github.com/feross/whiteboard/issues"
},
"dependencies": {
"bittorrent-tracker": "^8.0.4",
"cat-names": "^1.0.2",
"compression": "^1.1.0",
"concat-stream": "^1.4.6",
"debug": "^2.2.0",
"drag-drop": "^2.0.0",
"express": "^4.9.0",
"hat": "0.0.3",
"once": "^1.3.0",
"silence-chromium": "^2.0.0",
"simple-peer": "^6.0.3",
"through": "^2.3.4",
"thunky": "^0.1.0",
"uglify-js": "^2.4.15",
"videostream": "^2.3.0",
"webtorrent": ">=0.107.6",
"xhr": "^2.0.1"
},
"devDependencies": {
"browserify": "^14.0.0",
"electron": "^1.7.10",
"nodemon": "^1.2.1",
"standard": "*",
"watchify": "^3.0.0"
},
"homepage": "http://github.com/feross/whiteboard",
"keywords": [
"p2p",
"webrtc",
"data channel",
"file transfer",
"whiteboard"
],
"license": "MIT",
"main": "server.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/feross/whiteboard.git"
},
"scripts": {
"build": "browserify client > static/bundle.js",
"start": "node server.js",
"start-app": "electron app 2>&1 | silence-chromium",
"test": "standard",
"watch": "watchify client -o static/bundle.js -dv & DEBUG=whiteboard* nodemon server.js"
}
}