forked from mafintosh/signalhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "signalhub",
"version": "4.9.0",
"description": "Simple signalling server that can be used to coordinate handshaking with webrtc or other fun stuff.",
"main": "index.js",
"dependencies": {
"corsify": "^2.1.0",
"end-of-stream": "^1.1.0",
"event-source-stream": "^1.3.1",
"inherits": "^2.0.1",
"minimist": "^1.1.1",
"nets": "^3.1.0",
"pump": "^1.0.0",
"random-iterate": "^1.0.1",
"size-limit-stream": "^1.0.0",
"stream-collector": "^1.0.1",
"through2": "^0.6.5"
},
"devDependencies": {
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"scripts": {
"start": "node ./bin.js listen",
"test": "standard && tape test.js"
},
"bin": {
"signalhub": "./bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/signalhub.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/signalhub/issues"
},
"homepage": "https://github.com/mafintosh/signalhub"
}