-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 920 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
{
"name": "webrtc-connection-testing",
"version": "4.0.0",
"description": "Test server for determining the direct connectivity between WebRTC participants.",
"main": "src/server.js",
"scripts": {
"postinstall": "browserify src/browser.js -r -s participant -o public/participant.js",
"start": "node src/server.js",
"participant": "node bin/participant http://localhost:8080",
"watch": "watch 'npm run postinstall' --interval=5 --wait=5 --ignoreDotFiles src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"WebRTC"
],
"author": "Erick Lavoie",
"license": "MIT",
"dependencies": {
"browserify": "^16.2.3",
"debug": "^4.1.1",
"electron-webrtc": "^0.3.0",
"express": "^4.16.4",
"simple-peer": "^6.4.4",
"simple-websocket": "^7.2.0",
"wrtc": "^0.3.7",
"ws": "^6.1.4"
},
"devDependencies": {
"watch": "^1.0.2"
}
}