forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mediasoup",
"version": "3.5.13",
"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"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"webrtc",
"ortc",
"sfu",
"nodejs"
],
"engines": {
"node": ">=10"
},
"scripts": {
"typescript:build": "node npm-scripts.js typescript:build",
"typescript:watch": "node npm-scripts.js typescript:watch",
"lint": "npm run lint:node && npm run lint:worker",
"lint:node": "node npm-scripts.js lint:node",
"lint:worker": "node npm-scripts.js lint:worker",
"format:worker": "node npm-scripts.js format:worker",
"test": "npm run test:node && npm run test:worker",
"test:node": "npm run postinstall && node npm-scripts.js test:node",
"test:worker": "node npm-scripts.js test:worker",
"coverage": "npm run postinstall && node npm-scripts.js coverage",
"postinstall": "node npm-scripts.js postinstall"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "test/test.*\\.js"
},
"dependencies": {
"@types/node": "^14.0.1",
"awaitqueue": "^2.1.1",
"debug": "^4.1.1",
"h264-profile-level-id": "^1.0.1",
"netstring": "^0.3.0",
"random-number": "^0.0.9",
"supports-color": "^7.1.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/random-number": "0.0.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.13.1",
"gulp": "^4.0.2",
"gulp-clang-format": "^1.0.27",
"jest": "^26.0.1",
"jest-tobetype": "^1.2.3",
"open-cli": "^6.0.1",
"sctp": "^0.0.21",
"tsc-watch": "^4.2.6",
"typescript": "^3.9.2"
},
"optionalDependencies": {
"clang-tools-prebuilt": "^0.1.4"
}
}