-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@roomrtc/mediaserver",
"version": "0.11.1",
"description": "Media server for RoomRTC",
"main": "main.js",
"scripts": {
"test": "node test/start.js | tap-spec",
"lint": "eslint -c .eslintrc.js server.js",
"lint:fix": "eslint --fix -c .eslintrc.js server.js",
"start": "node server.js"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roomrtc/media-server.git"
},
"keywords": [
"media-server",
"roomrtc",
"webrtc"
],
"author": "vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/roomrtc/media-server/issues"
},
"homepage": "https://github.com/roomrtc/media-server#readme",
"dependencies": {
"body-parser": "^1.16.1",
"config": "^1.25.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.14.1",
"express-session": "^1.15.1",
"matchdep": "^2.0.0",
"mediasoup": "^3.2.5",
"roomrtc": "^0.12.0",
"uuid": "^3.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"supertest": "^2.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.6.3"
}
}