-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
{
"name": "libp2p-daemon",
"version": "0.1.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": "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": "^18.0.3",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"mocha": "^5.2.0",
"multihashes": "~0.4.14",
"sinon": "^7.2.3"
},
"dependencies": {
"cids": "~0.5.7",
"debug": "^4.1.1",
"length-prefixed-stream": "github:jacobheun/length-prefixed-stream#v2.0.0-rc.1",
"libp2p": "~0.24.4",
"libp2p-bootstrap": "~0.9.7",
"libp2p-kad-dht": "~0.14.3",
"libp2p-mplex": "~0.8.4",
"libp2p-secio": "~0.11.1",
"libp2p-tcp": "~0.13.0",
"libp2p-websockets": "~0.12.2",
"multiaddr": "^6.0.5",
"peer-book": "~0.9.0",
"peer-id": "~0.12.0",
"peer-info": "~0.15.0",
"protons": "^1.0.1",
"pull-stream-to-stream": "^1.3.4",
"readable-stream": "^3.1.0",
"yargs": "^12.0.5",
"yargs-promise": "^1.1.0"
},
"contributors": [
"Jacob Heun <jacobheun@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>"
]
}