-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1006 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
31
32
33
34
35
36
37
{
"name": "mrtc",
"version": "0.1.2",
"description": "RTCPeerConnection Wrapper for purists. No dependencies (just ~1.5KB gzipped).",
"main": "./dist/mrtc.min.js",
"scripts": {
"build": "webpack && webpack -p --output-filename mrtc.min.js && gzip -c ./dist/mrtc.min.js > ./dist/mrtc.min.js.gz",
"watch": "webpack -d --watch",
"test": "eslint . && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/nihey/mrtc.git"
},
"keywords": [
"wrtc",
"peer",
"webrtc",
"RTCPeerConnection"
],
"author": "Nihey Takizawa <nihey.takizawa@gmail.com>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/nihey/mrtc/issues"
},
"homepage": "https://github.com/nihey/mrtc",
"devDependencies": {
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.6.0",
"eslint-plugin-no-console-log": "^1.0.0",
"mocha": "^2.3.4",
"webpack": "^1.12.1",
"wrtc": "0.0.59"
}
}