forked from mappum/electron-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "electron-webrtc",
"version": "0.3.0",
"description": "Use WebRTC in Node.js via a hidden Electron process",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "standard && tap test/*.js -t150 -Rspec --cov",
"test-tap": "tap test/*.js -Rtap",
"test-lcov": "mkdir -p coverage && tap test/*.js -Rsilent --coverage-report=text-lcov > coverage/lcov.info"
},
"engines": {
"node": ">=4"
},
"keywords": [
"webrtc",
"electron"
],
"author": "Matt Bell <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"electron-eval": "^0.9.0",
"get-browser-rtc": "^1.0.2",
"hat": "^0.0.3"
},
"devDependencies": {
"simple-peer": "^6.0.1",
"standard": "^7.0.0",
"string-to-stream": "^1.0.1",
"tap": "^5.1.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mappum/electron-webrtc.git"
},
"bugs": {
"url": "https://github.com/mappum/electron-webrtc/issues"
},
"homepage": "https://github.com/mappum/electron-webrtc#readme"
}