-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "mediasoup-sdp-bridge",
"version": "3.6.5",
"description": "Node.js library to allow integration of SDP based clients with mediasoup",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)"
],
"homepage": "https://mediasoup.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/mediasoup-sdp-bridge.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"typescript:build": "node npm-scripts.js typescript:build",
"typescript:watch": "node npm-scripts.js typescript:watch",
"lint": "node npm-scripts.js lint",
"test": "node npm-scripts.js test",
"coverage": "node npm-scripts.js coverage"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "test/test.*\\.js"
},
"dependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.0.5",
"@types/uuid": "^8.0.0",
"awaitqueue": "^2.1.1",
"debug": "^4.1.1",
"h264-profile-level-id": "^1.0.1",
"sdp-transform": "^2.14.0",
"supports-color": "^7.1.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/sdp-transform": "^2.4.3",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"eslint": "^7.1.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"jest-tobetype": "^1.2.3",
"open-cli": "^6.0.1",
"tsc-watch": "^4.2.8",
"typescript": "~3.8.3"
},
"peerDependencies": {
"mediasoup": "^3.5.15"
}
}