-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
37
38
39
40
41
{
"name": "multi-rtc",
"version": "0.1.0",
"description": "Generic Multi-Peer RTCPeerConnection",
"main": "dist/multi-rtc.min.js",
"scripts": {
"build": "webpack && webpack -p --output-filename multi-rtc.min.js && gzip -c ./dist/multi-rtc.min.js > ./dist/multi-rtc.min.js.gz",
"watch": "webpack -d --watch",
"test": "eslint . && mocha"
},
"keywords": [
"wrtc",
"peer",
"multi",
"webrtc",
"multiple",
"RTCPeerConnection"
],
"repository": {
"type": "git",
"url": "https://github.com/nihey/multi-rtc.git"
},
"bugs": {
"url": "https://github.com/nihey/multi-rtc/issues"
},
"author": "Nihey Takizawa <nihey.takizawa@gmail.com>",
"license": "CC0-1.0",
"devDependencies": {
"atob": "^2.0.0",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"btoa": "^1.1.2",
"eslint": "^1.6.0",
"eslint-plugin-no-console-log": "^1.0.0",
"mocha": "^2.3.4",
"mrtc": "^0.1.1",
"webpack": "^1.12.1",
"wrtc": "0.0.59"
}
}