forked from versatica/mediasoup-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "mediasoup-client",
"version": "3.6.29",
"description": "mediasoup client side JavaScript library",
"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-client.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/events": "^3.0.0",
"awaitqueue": "^2.3.3",
"bowser": "^2.11.0",
"debug": "^4.3.1",
"events": "^3.3.0",
"h264-profile-level-id": "^1.0.1",
"sdp-transform": "^2.14.1",
"supports-color": "^8.1.1"
},
"devDependencies": {
"@types/sdp-transform": "^2.4.4",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.1.5",
"fake-mediastreamtrack": "^1.1.6",
"jest": "^26.6.3",
"jest-tobetype": "^1.2.3",
"open-cli": "^6.0.1",
"tsc-watch": "^4.2.9",
"typescript": "^3.8",
"uuid": "^3.4.0"
}
}