forked from DoclerLabs/webrtc-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "webrtc-analyzer",
"version": "3.1.1",
"description": "WebRTC Connection Analyzer",
"module": "./src/App.js",
"main": "./build/webrtc-analyzer.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot --progress --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"prettify": "prettier --config .prettierrc --write \"src/**/!(Lesshat).{less,js}\"",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "yarn run build"
},
"files": [
"build",
"package.json",
"README.md"
],
"repository": "https://github.com/gabrielmicko/webrtc-analyzer",
"author": "Gabriel Micko <[email protected]>",
"license": "MIT",
"dependencies": {
"preact": "^8.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"babel-loader": "^8.0.2",
"html-webpack-plugin": "^3.2.0",
"styled-components": "^3.4.6",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.7"
},
"keywords": [
"webrtc",
"analyze",
"analyzer",
"diagnostic",
"statistic",
"real-time",
"realtime",
"debugging",
"getStats"
],
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
},
"verbose": true,
"testEnvironment": "jsdom",
"testURL": "http://localhost:3000"
}
}