forked from libp2p/js-libp2p-switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.65 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
{
"name": "libp2p-swarm",
"version": "0.27.0",
"description": "libp2p swarm implementation in JavaScript",
"main": "src/index.js",
"scripts": {
"lint": "gulp lint",
"build": "gulp build",
"test": "gulp test --dom",
"test:node": "gulp test:node",
"test:browser": "gulp test:browser --dom",
"release": "gulp release --dom",
"release-minor": "gulp release --type minor --dom",
"release-major": "gulp release --type major --dom",
"coverage": "gulp coverage",
"coverage-publish": "aegir-coverage publish"
},
"browser": {
"zlib": "browserify-zlib-next"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-swarm.git"
},
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-swarm/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-swarm",
"pre-commit": [
"lint",
"test"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"aegir": "^11.0.1",
"buffer-loader": "0.0.1",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"gulp": "^3.9.1",
"libp2p-multiplex": "~0.4.3",
"libp2p-secio": "~0.6.8",
"libp2p-spdy": "~0.10.6",
"libp2p-tcp": "~0.10.0",
"libp2p-webrtc-star": "~0.8.10",
"libp2p-websockets": "~0.10.0",
"pre-commit": "^1.2.2",
"pull-goodbye": "0.0.1",
"pull-stream": "^3.5.0",
"webrtcsupport": "^2.2.0"
},
"dependencies": {
"async": "^2.2.0",
"browserify-zlib-next": "^1.0.1",
"debug": "^2.6.3",
"interface-connection": "~0.3.2",
"ip-address": "^5.8.6",
"libp2p-identify": "git://github.com/duomarket/js-libp2p-identify.git",
"lodash.includes": "^4.3.0",
"multiaddr": "^2.2.3",
"multistream-select": "~0.13.5",
"once": "^1.4.0",
"peer-id": "git://github.com/duomarket/js-peer-id.git",
"peer-info": "git://github.com/duomarket/js-peer-info.git",
"protocol-buffers": "^3.2.1"
},
"contributors": [
"David Dias <[email protected]>",
"David Dias <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Greenkeeper <[email protected]>",
"Haad <[email protected]>",
"Kobi Gurkan <[email protected]>",
"Michael Fakhry <[email protected]>",
"Pau Ramon Revilla <[email protected]>",
"Richard Littauer <[email protected]>",
"Sid Harder <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}