-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "webrtc-issue-detector",
"version": "1.12.0",
"description": "WebRTC diagnostic tool that detects issues with network or user devices",
"repository": "[email protected]:VLprojects/webrtc-issue-detector.git",
"author": "Roman Kuzakov <[email protected]>",
"maintainers": [
{
"name": "Vladimir Panov",
"email": "[email protected]",
"url": "https://github.com/panov-va"
},
{
"name": "Evgeny Melnikov",
"email": "[email protected]",
"url": "https://github.com/evgmel"
}
],
"license": "MIT",
"homepage": "https://github.com/VLprojects/webrtc-issue-detector#readme",
"keywords": [
"webrtc",
"stats",
"rtcstatsreport",
"network",
"issues",
"mos calculator"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"lint": "eslint ./src",
"lint:tests": "cd test && eslint ./",
"test": "NODE_ENV=test mocha --config test/utils/runners/mocha/.mocharc.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
"@types/faker": "^5.5.9",
"@types/mocha": "^10.0.1",
"@types/node": "14",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"faker": "^5.5.3",
"mocha": "^10.2.0",
"rollup": "^2.78.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^14.0.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"dist/"
],
"main": "dist/bundle-cjs.js",
"module": "dist/bundle-esm.js",
"types": "dist/index.d.ts"
}