-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "webrtcmetrics",
"version": "5.5.0",
"description": "WebRTC stats library",
"main": "dist/WebRTCMetrics.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build:dev": "webpack --config webpack.config-dev.js -w",
"build:prod": "webpack --config webpack.config-prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oanguenot/webrtc-stats.git"
},
"keywords": [
"WebRTC",
"stats"
],
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"author": "Olivier Anguenot <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oanguenot/webrtc-stats/issues"
},
"homepage": "https://github.com/oanguenot/webrtc-stats#readme",
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/register": "7.22.15",
"babel-loader": "9.1.3",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-webpack-plugin": "4.0.1",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"loglevel": "1.8.1",
"short-unique-id": "5.0.3"
}
}