forked from peermetrics/webrtc-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
{
"name": "@peermetrics/webrtc-stats",
"version": "2.2.3",
"description": "Library that helps you read webrtc stats.",
"main": "dist/index.js",
"browser": "dist/browser.js",
"repository": "https://github.com/peermetrics/webrtc-stats",
"author": "Andrei Onel <[email protected]>",
"license": "MIT",
"keywords": [
"webrtc",
"webrtc-stats",
"stats"
],
"scripts": {
"build": "rollup -c",
"serve": "npm run build && npm run copy && http-server dist",
"watch": "rollup -c -w",
"clean": "del dist",
"copy": "cpy './src/index.html' './dist'",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "echo 'Soon'"
},
"engines": {
"node": ">=8"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-typescript": "^4.0.0",
"@types/webrtc": "0.0.26",
"babel-preset-minify": "^0.5.1",
"cpy-cli": "^3.0.0",
"del-cli": "^3.0.0",
"http-server": "^0.12.1",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-builtins": "^2.1.2",
"standard": "^14.0.0",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
},
"standard": {
"ignore": [
"**/dist/",
"**.html"
]
}
}