forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "mediasoup",
"version": "2.6.8",
"description": "Cutting Edge WebRTC Video Conferencing",
"author": "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
"contributors": [
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)"
],
"homepage": "https://mediasoup.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/mediasoup.git"
},
"keywords": [
"webrtc",
"ortc",
"sfu",
"nodejs"
],
"bugs": {
"url": "https://github.com/versatica/mediasoup/issues"
},
"os": [
"!win32"
],
"engines": {
"node": ">=6.4"
},
"main": "lib/mediasoup.js",
"dependencies": {
"check-types": "^7.4.0",
"debug": "^4.1.0",
"netstring": "^0.3.0",
"random-number": "0.0.9",
"randomatic": "^3.1.1"
},
"devDependencies": {
"eslint": "^5.12.1",
"gulp": "^4.0.0",
"gulp-clang-format": "^1.0.27",
"gulp-eslint": "^5.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-shell": "^0.6.5",
"gulp-touch-cmd": "0.0.1",
"tap": "^12.4.0"
},
"optionalDependencies": {
"clang-tools-prebuilt": "^0.1.4"
},
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"postinstall": "make Release -C worker"
}
}