-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "webrtc-troubleshoot",
"version": "11.0.5",
"description": "A way to add webrtc troubleshooting to your app",
"main": "src/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "webpack --env=prod --progress --profile --colors",
"start": "concurrently --kill-others \"webpack --env=prod --profile --colors --watch\" \"stupid-server ./\"",
"test": "npm run lint && npm run unit-test",
"test:watch": "jest --watch --collectCoverage=false",
"lint": "semistandard && npm run tslint",
"tslint": "tslint --project . --config tslint.json",
"unit-test": "jest"
},
"repository": "https://github.com/mypurecloud/webrtc-troubleshooter",
"engines": {
"node": ">= 4.4.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/webrtc": "0.0.25",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^7.1.5",
"browser-env": "^3.1.0",
"concurrently": "^4.1.0",
"jest": "^24.8.0",
"semistandard": "^12.0.1",
"stupid-server": "^0.2.5",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-semistandard": "^8.0.0",
"typescript": "^3.4.5",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webrtc-adapter": "^6.1.5"
},
"dependencies": {
"localmedia": "^5.1.2",
"rtcpeerconnection": "^8.0.1",
"webrtc-stats-gatherer": "^7.1.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"semistandard": {
"ignore": [
"**/dist",
"**/_test"
]
}
}