forked from feross/simple-peer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "simple-peer",
"description": "Simple one-to-one WebRTC video/voice and data channels",
"version": "9.1.2",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bugs": {
"url": "https://github.com/feross/simple-peer/issues"
},
"dependencies": {
"debug": "^3.1.0",
"get-browser-rtc": "^1.0.0",
"inherits": "^2.0.1",
"randombytes": "^2.0.3",
"readable-stream": "^2.3.4"
},
"devDependencies": {
"airtap": "0.1.0",
"babel-minify": "^0.4.3",
"bowser": "^1.9.2",
"browserify": "^16.1.0",
"electron-webrtc": "^0.3.0",
"prettier-bytes": "^1.0.3",
"simple-get": "^3.0.1",
"speedometer": "^1.0.0",
"standard": "*",
"string-to-stream": "^1.0.0",
"tape": "^4.0.0",
"thunky": "^1.0.1",
"wrtc": "^0.1.1",
"ws": "^6.0.0"
},
"keywords": [
"data",
"data channel",
"data channel stream",
"data channels",
"p2p",
"peer",
"peer",
"peer-to-peer",
"stream",
"video",
"voice",
"webrtc",
"webrtc stream"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/simple-peer.git"
},
"scripts": {
"build": "browserify -s SimplePeer -r ./ | minify > simplepeer.min.js",
"size": "npm run build && cat simplepeer.min.js | gzip | wc -c",
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/*.js",
"test-browser-local": "airtap --local -- test/*.js",
"test-node": "npm run test-node-electron-webrtc && npm run test-node-wrtc",
"test-node-electron-webrtc": "WRTC=electron-webrtc tape test/*.js",
"test-node-wrtc": "WRTC=wrtc tape test/*.js"
}
}