forked from feross/simple-peer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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": "simple-peer",
"description": "Simple one-to-one WebRTC video/voice and data channels",
"version": "6.1.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bugs": {
"url": "https://github.com/feross/simple-peer/issues"
},
"dependencies": {
"debug": "^2.1.0",
"get-browser-rtc": "^1.0.0",
"inherits": "^2.0.1",
"randombytes": "^2.0.3",
"readable-stream": "^2.0.5"
},
"devDependencies": {
"browserify": "^13.0.0",
"concat-stream": "^1.4.6",
"simple-get": "^2.0.0",
"standard": "*",
"string-to-stream": "^1.0.0",
"tape": "^4.0.0",
"thunky": "^1.0.1",
"uglify-js": "^2.4.15",
"zuul": "^3.8.0"
},
"keywords": [
"webrtc",
"p2p",
"data channel",
"data channels",
"data",
"video",
"voice",
"peer",
"stream",
"peer-to-peer",
"data channel stream",
"webrtc stream",
"peer"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/simple-peer.git"
},
"scripts": {
"test": "standard && npm run test-browser",
"test-browser": "zuul -- test/*.js",
"test-browser-local": "zuul --local -- test/*.js",
"test-node": "echo 'DISABLED' && tape test/*.js",
"build": "browserify -s SimplePeer -r ./ | uglifyjs -m > simplepeer.min.js"
},
"testling": {
"files": "test/*.js"
}
}