-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 913 Bytes
/
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
{
"name" : "@detox/bootstrap-node",
"description" : "Bootstrap node implementation for Detox network",
"keywords" : [
"detox",
"anonymous",
"distributed",
"p2p"
],
"version" : "0.1.2",
"homepage" : "https://github.com/Detox/bootstrap-node",
"author" : "Nazar Mokrynskyi <nazar@mokrynskyi.com>",
"repository" : {
"type" : "git",
"url" : "git://github.com/Detox/bootstrap-node.git"
},
"license" : "0BSD",
"main" : "src/index.js",
"bin" : {
"detox-bootstrap-node" : "bin/detox-bootstrap-node.js"
},
"files" : [
"bin",
"src"
],
"scripts" : {
"detox-bootstrap-node" : "bin/detox-bootstrap-node.js",
"test" : "tape tests/**/*.js"
},
"dependencies" : {
"@detox/core" : "^0.20.0",
"async-eventer" : "^1.1.7",
"yargs" : "^11.0.0"
},
"yargs" : {
"parse-numbers" : false
}
}