This repository has been archived by the owner on Aug 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
114 lines (114 loc) · 3.51 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "libp2p-switch",
"version": "0.43.0",
"description": "libp2p switch implementation in JavaScript",
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test -t node -t browser",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"release": "aegir release -t node -t browser",
"release-minor": "aegir release --type minor -t node -t browser",
"release-major": "aegir release --type major -t node -t browser",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage --provider coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-switch.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-switch/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-switch",
"pre-push": [
"lint"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"aegir": "^20.0.0",
"chai": "^4.2.0",
"chai-checkmark": "^1.0.1",
"dirty-chai": "^2.0.1",
"libp2p-mplex": "~0.8.5",
"libp2p-pnet": "~0.1.0",
"libp2p-secio": "~0.11.1",
"libp2p-spdy": "~0.13.3",
"libp2p-tcp": "~0.13.0",
"libp2p-webrtc-star": "~0.16.1",
"libp2p-websockets": "~0.12.2",
"peer-book": "~0.9.1",
"portfinder": "^1.0.20",
"pull-length-prefixed": "^1.3.3",
"pull-mplex": "~0.1.2",
"pull-pair": "^1.1.0",
"sinon": "^7.3.2",
"webrtcsupport": "^2.2.0"
},
"dependencies": {
"async": "^2.6.2",
"bignumber.js": "^8.1.1",
"class-is": "^1.1.0",
"debug": "^4.1.1",
"err-code": "^1.1.2",
"fsm-event": "^2.1.0",
"hashlru": "^2.3.0",
"interface-connection": "~0.3.3",
"libp2p-circuit": "~0.3.6",
"libp2p-identify": "~0.7.6",
"moving-average": "^1.0.0",
"multiaddr": "^6.1.0",
"multistream-select": "~0.14.6",
"once": "^1.4.0",
"peer-id": "~0.12.2",
"peer-info": "~0.15.1",
"pull-stream": "^3.6.13",
"retimer": "^2.0.0"
},
"contributors": [
"Alan Shaw <[email protected]>",
"Alan Shaw <[email protected]>",
"Arnaud <[email protected]>",
"David Dias <[email protected]>",
"David Dias <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Greenkeeper <[email protected]>",
"Haad <[email protected]>",
"Hugo Dias <[email protected]>",
"Hugo Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"Jacob Heun <[email protected]>",
"Kevin Kwok <[email protected]>",
"Kobi Gurkan <[email protected]>",
"Maciej Krüger <[email protected]>",
"Matteo Collina <[email protected]>",
"Michael Fakhry <[email protected]>",
"Oli Evans <[email protected]>",
"Pau Ramon Revilla <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Pius Nyakoojo <[email protected]>",
"Richard Littauer <[email protected]>",
"Sid Harder <[email protected]>",
"Vasco Santos <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"harrshasri <[email protected]>",
"kumavis <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}