-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 960 Bytes
/
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
{
"name": "webrtc-bootstrap",
"version": "4.4.1",
"description": "Bootstrap client and server to bootstrap WebRTC connections made with simple-peer",
"main": "src/index.js",
"scripts": {
"start": "DEBUG=webrtc* node bin/server",
"postinstall": "browserify src/browser.js -r -s browser -o public/browser.js;",
"test": "tape test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elavoie/webrtc-bootstrap.git"
},
"author": "Erick Lavoie",
"license": "MIT",
"bugs": {
"url": "https://github.com/elavoie/webrtc-bootstrap/issues"
},
"homepage": "https://github.com/elavoie/webrtc-bootstrap#readme",
"dependencies": {
"browserify": "^16.2.3",
"debug": "^2.6.9",
"express": "^4.16.3",
"simple-peer": "^6.4.4",
"simple-websocket": "^7.2.0",
"ws": "^6.2.1"
},
"devDependencies": {
"electron-webrtc": "^0.3.0",
"tape": "^4.10.1",
"wrtc": "^0.3.7"
}
}