forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "mediasoup",
"version": "3.2.5",
"description": "Cutting Edge WebRTC Video Conferencing",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"José Luis Millán <[email protected]> (https://github.com/jmillan)"
],
"homepage": "https://mediasoup.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/mediasoup.git"
},
"main": "lib/index.js",
"keywords": [
"webrtc",
"ortc",
"sfu",
"nodejs"
],
"os": [
"!win32"
],
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"lint": "npm run lint:node && npm run lint:worker",
"lint:node": "eslint -c .eslintrc.js gulpfile.js lib test",
"lint:worker": "make lint -C worker",
"format:worker": "make format -C worker",
"test": "npm run test:node && npm run test:worker",
"test:node": "make -C worker && jest",
"test:worker": "make test -C worker",
"coverage:node": "make -C worker && jest --coverage && open-cli coverage/lcov-report/index.html",
"postinstall": "make -C worker"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "test/test.*\\.js"
},
"dependencies": {
"debug": "^4.1.1",
"h264-profile-level-id": "^1.0.0",
"netstring": "^0.3.0",
"random-number": "^0.0.9",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-plugin-jest": "^22.13.6",
"gulp": "^4.0.2",
"gulp-clang-format": "^1.0.27",
"jest": "^24.8.0",
"jest-tobetype": "^1.2.3",
"open-cli": "^5.0.0",
"sctp": "^0.0.18"
},
"optionalDependencies": {
"clang-tools-prebuilt": "^0.1.4"
}
}