forked from feross/simple-peer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.41 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
87
88
89
90
91
92
93
94
95
{
"name": "tiny-simple-peer",
"description": "Simple one-to-one WebRTC video/voice and data channels, which drops stream support from simple-peer to improve performance and reduce bundle size",
"version": "10.1.2",
"engines": {
"node": ">=10"
},
"contributors": [
{
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
{
"name": "Greg Fodor",
"email": "gfodor@gmail.com",
"url": "https://github.com/gfodor"
}
],
"bugs": {
"url": "https://github.com/gfodor/tiny-simple-peer/issues"
},
"dependencies": {
"debug": "^4.3.2",
"err-code": "^3.0.1",
"events": "^3.3.0",
"get-browser-rtc": "^1.1.0",
"queue-microtask": "^1.2.3",
"random-string": "^0.2.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/gfodor/tiny-simple-peer.git"
},
"scripts": {
"build": "browserify -s TinySimplePeer -r . | minify > tinysimplepeer.min.js",
"size": "npm run build && cat tinysimplepeer.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"
}
]
}