-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@observertc/client-monitor-js",
"version": "3.11.0",
"description": "ObserveRTC Client Integration Javascript Library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10"
},
"files": [
"lib"
],
"scripts": {
"prepare": "npm run build",
"prepublish": "pkgfiles",
"prepublishOnly": "npm run lint",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js src/*",
"build": "tsc",
"test": "jest --config jest.config.js"
},
"keywords": [
"webrtc",
"getStats",
"observertc",
"client",
"integration"
],
"author": "Balazs Kreith",
"license": "Apache-2.0",
"dependencies": {
"events": "^3.3.0",
"ua-parser-js": "^1.0.37",
"uuid": "^8.3.2"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/events": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^8.3.4",
"mediasoup-client": "^3.7.16",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"bufferutil": "^4.0.6",
"eslint": "^8.24.0",
"jest": "^29.6.2",
"pkgfiles": "^2.3.2",
"ts-jest": "^29.1.1",
"typescript": "^4.8.3",
"utf-8-validate": "^5.0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/observertc/client-monitor-js"
}
}