-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
{
"name": "simple-webrtc-wrapper",
"version": "0.2.0",
"description": "",
"main": "dist/simpleWebRTCWrapper.min.js",
"homepage": "https://github.com/jimmaaay/simpleWebRTCWrapper",
"scripts": {
"browsersync": "browser-sync start --s --index 'index.html' --files 'index.html, dist/**/*.js'",
"build": "npm run clean && rollup -c",
"clean": "rimraf dist",
"rollup": "rollup -c --watch",
"dev": "npm run clean && npm-run-all --parallel browsersync rollup"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@types/webrtc": "0.0.23",
"browser-sync": "^2.24.6",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.16.1",
"rollup-plugin-uglify": "^4.0.0",
"typescript": "^3.0.1",
"uglify-js": "^3.4.5"
},
"dependencies": {
"eventemitter3": "^3.1.0"
}
}