forked from feross/simple-peer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "@detox/simple-peer",
"description": "Simple one-to-one WebRTC video/voice and data channels",
"version": "9.1.2",
"bugs": {
"url": "https://github.com/Detox/simple-peer/issues"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"inherits": "^2.0.1"
},
"devDependencies": {
"airtap": "0.0.5",
"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": "^5.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",
"browser": {
"./lib/randombytes": "./lib/randombytes.browser"
},
"repository": {
"type": "git",
"url": "git://github.com/Detox/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"
}
}