forked from fippo/rtcstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 831 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
{
"name": "rtcstats",
"version": "5.2.0",
"description": "gather WebRTC API traces and statistics",
"main": "rtcstats.js",
"types": "rtcstats.d.ts",
"dependencies": {},
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^6.8.0",
"eslint-plugin-require-path-exists": "^1.1.9",
"tape": "^4.10.1",
"travis-multirunner": "^4.5.0",
"uglify-js": "^2.6.1"
},
"scripts": {
"test": "./node_modules/.bin/eslint rtcstats.js trace-ws.js nonmodule.js && npm run dist",
"dist": "mkdir -p out && browserify -o out/rtcstats.js nonmodule.js && uglifyjs -o min.js out/rtcstats.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fippo/rtcstats.git"
},
"keywords": [
"webrtc",
"rtcpeerconnection"
],
"author": "Philipp Hancke",
"license": "MIT"
}