-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "peerconnection-stats",
"version": "1.2.0",
"description": "A getStats API of peerconnection with 'Standardized' and 'Legacy Non-Standard' reports.",
"main": "lib/index.js",
"types": "types",
"scripts": {
"test": "karma start test/karma.config.js",
"dev": "webpack --config webpack.dev.js",
"build": "rm -rf types && webpack --config webpack.prod.js",
"doc": "rm -rf docs && typedoc",
"postbuild": "npm run doc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/poplark/peerconnection-stats.git"
},
"keywords": [
"WebRTC",
"peerconnection",
"getStats",
"standardized",
"legacy",
"no-standard"
],
"author": {
"name": "poplark",
"email": "songkang666@126.com",
"url": "https://github.com/poplark"
},
"files": [
"lib/index.js",
"types/**/*.d.ts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/poplark/peerconnection-stats/issues"
},
"homepage": "https://github.com/poplark/peerconnection-stats#readme",
"devDependencies": {
"@types/jasmine": "^3.8.2",
"@types/node": "^14.0.5",
"jasmine-core": "^3.9.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^5.5.2",
"karma-typescript-es6-transform": "^5.5.2",
"ts-loader": "^7.0.4",
"tslib": "^2.3.0",
"typedoc": "^0.21.6",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"yaml": "^1.10.0"
},
"peerDependencies": {
"webrtc-adapter": ">=7.3.0"
}
}