-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.39 KB
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
{
"name": "libp2p-daemon",
"version": "0.5.2",
"description": "libp2p-daemon JavaScript implementation",
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-libp2p-daemon.git"
},
"files": [
"dist",
"src"
],
"main": "src/daemon.js",
"bin": {
"jsp2pd": "src/cli/bin.js"
},
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test -t node -f test/*.js test/**/*.js",
"test:node": "aegir test -t node -f test/*.js test/**/*.js",
"release": "aegir release --no-build -t node",
"release-minor": "aegir release --no-build --type minor -t node",
"release-major": "aegir release --no-build --type major -t node"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/libp2p/js-libp2p-daemon/issues"
},
"homepage": "https://github.com/libp2p/js-libp2p-daemon",
"keywords": [
"libp2p"
],
"license": "MIT",
"devDependencies": {
"aegir": "^30.3.0",
"chai": "^4.3.0",
"chai-bytes": "^0.1.2",
"delay": "^5.0.0",
"dirty-chai": "^2.0.1",
"it-pair": "^1.0.0",
"mocha": "^8.3.0",
"multihashes": "^3.1.2",
"p-defer": "^3.0.0",
"sinon": "^9.0.0"
},
"dependencies": {
"@libp2p/observer-data": "^1.1.0",
"@libp2p/observer-proto": "^1.1.0",
"base32.js": "^0.1.0",
"cids": "^1.1.5",
"debug": "^4.3.1",
"it-buffer": "^0.1.2",
"it-handshake": "^1.0.2",
"it-length-prefixed": "^3.1.0",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.0",
"libp2p": "^0.30.8",
"libp2p-bootstrap": "^0.12.1",
"libp2p-floodsub": "^0.24.1",
"libp2p-gossipsub": "^0.8.0",
"libp2p-kad-dht": "libp2p/js-libp2p-kad-dht#feat/peer-eviction",
"libp2p-mplex": "^0.10.0",
"libp2p-noise": "^2.0.0",
"libp2p-secio": "^0.13.1",
"libp2p-tcp": "^0.15.1",
"libp2p-websockets": "^0.14.0",
"multiaddr": "^8.1.0",
"peer-id": "^0.14.0",
"promisify-es6": "^1.0.3",
"protons": "^2.0.0",
"stream-to-it": "^0.2.0",
"streaming-iterables": "^5.0.2",
"uint8arrays": "^2.1.0",
"yargs": "^15.0.2",
"yargs-promise": "^1.1.0"
},
"contributors": [
"Jacob Heun <jacobheun@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Arve Knudsen <arve.knudsen@gmail.com>",
"Alex Potsides <alex@achingbrain.net>"
]
}