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 8
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "libp2p-ping",
"version": "0.8.5",
"description": "libp2p Ping protocol implementation",
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"pre-push": [
"lint"
],
"scripts": {
"test": "aegir test -t node",
"test:node": "aegir test -t node",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release -t node",
"release-minor": "aegir release --type minor -t node",
"release-major": "aegir release --type major -t node",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-ping.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-ping/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-ping",
"devDependencies": {
"aegir": "^18.2.2",
"async": "^2.6.2",
"chai": "^4.2.0",
"debug": "^4.1.1",
"dirty-chai": "^2.0.1",
"libp2p-switch": "~0.42.9",
"libp2p-tcp": "~0.13.0",
"multiaddr": "^6.0.6",
"peer-book": "~0.9.1",
"peer-id": "~0.12.2",
"peer-info": "~0.15.1",
"run-parallel": "^1.1.9"
},
"dependencies": {
"libp2p-crypto": "~0.16.1",
"pull-handshake": "^1.1.4",
"pull-stream": "^3.6.9"
},
"contributors": [
"David Dias <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Hugo Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"João Antunes <[email protected]>",
"Richard Littauer <[email protected]>",
"Vasco Santos <[email protected]>",
"Vasco Santos <[email protected]>",
"greenkeeperio-bot <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
]
}