forked from feross/simple-peer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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": "4.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",
"dezalgo": "^1.0.1",
"hat": "0.0.3",
"inherits": "^2.0.1",
"is-typedarray": "0.0.0",
"once": "^1.3.1",
"typedarray-to-buffer": "^3.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^9.0.3",
"concat-stream": "^1.4.6",
"standard": "^3.1.2",
"string-to-stream": "^1.0.0",
"tape": "^3.0.3",
"uglify-js": "^2.4.15",
"zuul": "^2.1.1"
},
"homepage": "http://webtorrent.io",
"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 && zuul -- test/*.js",
"test-local": "zuul --local -- test/*.js",
"build": "browserify -s SimplePeer -r ./ | uglifyjs -m > simplepeer.min.js"
},
"testling": {
"files": "test/*.js"
}
}