-
-
Notifications
You must be signed in to change notification settings - Fork 974
/
package.json
86 lines (86 loc) · 2.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "simple-peer",
"description": "Simple one-to-one WebRTC video/voice and data channels",
"version": "9.11.1",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/simple-peer/issues"
},
"dependencies": {
"buffer": "^6.0.3",
"debug": "^4.3.2",
"err-code": "^3.0.1",
"get-browser-rtc": "^1.1.0",
"queue-microtask": "^1.2.3",
"randombytes": "^2.1.0",
"readable-stream": "^3.6.0"
},
"devDependencies": {
"airtap": "^4.0.3",
"airtap-manual": "^1.0.0",
"airtap-sauce": "^1.1.0",
"babel-minify": "^0.5.1",
"bowser": "^2.11.0",
"browserify": "^17.0.0",
"coveralls": "^3.1.1",
"nyc": "^15.1.0",
"prettier-bytes": "^1.0.4",
"simple-get": "^4.0.0",
"speedometer": "^1.1.0",
"standard": "*",
"string-to-stream": "^3.0.1",
"tape": "^5.5.2",
"thunky": "^1.1.0",
"wrtc": "^0.4.7",
"ws": "^7.5.3"
},
"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": "standard && npm run test-browser",
"test-browser": "airtap --coverage --concurrency 1 -- test/*.js",
"test-browser-local": "airtap --coverage --preset local -- test/*.js",
"test-node": "WRTC=wrtc tape test/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}