-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
67
{
"name": "cbsignal_node",
"description": "High performance CDNBye signaling service",
"version": "2.5.3",
"license": "Apache-2.0",
"author": "cdnbye",
"homepage": "https://www.cdnbye.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"cbsignal": "./bin/cbsignal"
},
"keywords": [
"p2p",
"peer-to-peer",
"webrtc",
"swarmcloud",
"signal",
"cdnbye",
"cbsignal",
"websockets",
"swarmcloud"
],
"scripts": {
"start": "node ./dist/run-uws-signal.js ./config/config.json",
"compile": "tsc",
"debug": "DEBUG=* node ./dist/run-uws-signal.js",
"upgrade": "git pull && npm rum compile && pm2 restart pm2.config.js",
"clean": "rimraf dist",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/cdnbye/cbsignal_node.git"
},
"dependencies": {
"@fidm/x509": "^1.2.1",
"debug": "^4.1.1",
"limiter": "^2.1.0",
"node-fetch": "^2.6.1",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.19.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prefer-arrow": "^1.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"ts-mockito": "^2.5.0",
"typescript": "^3.8.3",
"ws": "^7.2.5"
}
}