-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 797 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 797 Bytes
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
{
"name": "signaling",
"version": "1.1.2",
"description": "A simple signaling server for RoomRTC",
"main": "index.js",
"scripts": {
"test": "node test/start.js | tap-spec",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roomrtc/signaling.git"
},
"keywords": [
"roomrtc",
"signaling",
"webrtc"
],
"author": "Vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/roomrtc/signaling/issues"
},
"homepage": "https://github.com/roomrtc/signaling#readme",
"devDependencies": {
"socket.io-client": "2.2.0",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"debug": "^2.6.9",
"eventemitter2": "4.0.0",
"socket.io": "2.2.0",
"uuid": "3.0.x"
}
}