-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "webrtc-stats-gatherer",
"version": "9.0.10",
"description": "Gathers stats on interval for webrtc peer connection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rimraf dist lib",
"build": "npm run clean && tsc",
"_test": "jest",
"test": "npm run lint && jest",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"format": "prettier src --write && prettier test --write",
"greenkeep": "npx npm-check --update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mypurecloud/webrtc-stats-gatherer.git"
},
"keywords": [
"webrtc",
"stats"
],
"author": "Xander Dumaine <[email protected]>, Garrett Jensen <[email protected]>, Fippo & Lance <3",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/mypurecloud/webrtc-stats-gatherer/issues"
},
"homepage": "https://github.com/mypurecloud/webrtc-stats-gatherer#readme",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"pre-push": [
"test"
],
"pre-commit": [
"lint",
"format"
]
}