-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1023 Bytes
/
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
{
"name": "@meetrix/webrtc-monitoring-common-lib",
"version": "0.1.18",
"description": "@meetrix/webrtc-monitoring-common-lib",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"typescript": "^4.4.4",
"@peermetrics/webrtc-stats": "git+https://github.com/buddhikajay/webrtc-stats.git"
},
"devDependencies": {
"@types/node": "^17.0.5",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"rimraf": "^3.0.2"
},
"scripts": {
"clean": "rimraf dist",
"start": "tsc --watch",
"format": "prettier --write ./*",
"build": "tsc",
"prepublishOnly": "husky install && npm run build",
"prepare": "husky install && npm run build",
"pretest": "husky install && npm run build"
},
"author": "",
"license": "ISC",
"lint-staged": {
"*.{ts, js, json}": "prettier --write"
},
"publishConfig": {
"access": "restricted",
"@meetrix:registry": "https://gitlab.com/api/v4/projects/32437582/packages/npm/"
}
}