forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.77 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "mediasoup",
"version": "3.9.1",
"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)",
"Nazar Mokynskyi (https://github.com/nazar-pc)"
],
"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": "node/lib/index.js",
"types": "node/lib/index.d.ts",
"files": [
"node/lib",
"worker/deps/libwebrtc",
"worker/fuzzer/include",
"worker/fuzzer/src",
"worker/include",
"worker/scripts/*.py",
"worker/scripts/*.sh",
"worker/scripts/*.js",
"worker/scripts/*.json",
"worker/src",
"worker/subprojects/packagefiles",
"worker/subprojects/*.wrap",
"worker/test/include",
"worker/test/src",
"worker/Makefile",
"worker/meson.build",
"npm-scripts.js"
],
"keywords": [
"webrtc",
"ortc",
"sfu",
"nodejs"
],
"engines": {
"node": ">=12"
},
"scripts": {
"install-clang-tools": "node npm-scripts.js install-clang-tools",
"typescript:build": "node npm-scripts.js typescript:build",
"typescript:watch": "node npm-scripts.js typescript:watch",
"worker:build": "node npm-scripts.js worker:build",
"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 worker:build && node npm-scripts.js test:node",
"test:worker": "node npm-scripts.js test:worker",
"coverage": "npm run worker:build && node npm-scripts.js coverage",
"postinstall": "node npm-scripts.js postinstall",
"release": "node npm-scripts.js release"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "node/tests/test.*\\.js"
},
"dependencies": {
"@types/node": "^16.11.6",
"debug": "^4.3.2",
"h264-profile-level-id": "^1.0.1",
"random-number": "^0.0.9",
"supports-color": "^9.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/random-number": "^0.0.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"jest-tobetype": "^1.2.3",
"open-cli": "^7.0.1",
"pick-port": "^1.0.0",
"sctp": "^1.0.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
}
}