forked from royaltm/node-zmq-raft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "zmq-raft",
"version": "0.6.0",
"description": "An opinionated Raft implementation powered by ØMQ",
"main": "index.js",
"bin": {
"zmq-raft": "./bin/zmq-raft.js",
"zr-log-compact": "./bin/zr-log-compact.js",
"zr-log-tool": "./bin/zr-tool.js",
"zr-config": "./bin/zr-config.js"
},
"files": [
"index.js",
"bin",
"config",
"example",
"lib",
"static",
"*.md"
],
"scripts": {
"cli": "node ./bin/console.js",
"test": "tap -t 600 --no-cov test/*/test.*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/royaltm/node-zmq-raft.git"
},
"engine-strict": true,
"engines": {
"node": ">=8"
},
"keywords": [
"raft",
"zmq",
"ha"
],
"author": "Rafal Michalski <[email protected]>",
"contributors": [
"Lukas Hagen (https://github.com/Greenscreen23)"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/royaltm/node-zmq-raft/issues"
},
"homepage": "https://github.com/royaltm/node-zmq-raft#readme",
"dependencies": {
"commander": "^11.1.0",
"hjson": "^3.2.2",
"js-yaml": "^4.1.0",
"mkdirp": "^3.0.1",
"msgpack-lite": "^0.1.26",
"toml": "^3.0.0",
"zeromq": "~5.3.1"
},
"devDependencies": {
"ben": "0.0.0",
"colors": "^1.4.0",
"tap": "^16.3.9"
}
}