-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "@markwylde/liferaft",
"version": "1.3.6",
"description": "Consensus protocol based on raft, it will one day save your live.",
"main": "index.js",
"scripts": {
"test": "npm run test-memdown && npm run test-leveldown",
"test-leveldown": "ADAPTER=leveldown mocha test/**.js",
"test-memdown": "ADAPTER=memdown mocha test/**.js"
},
"repository": {
"type": "git",
"url": "https://github.com/markwylde/liferaft"
},
"keywords": [
"raft",
"liferaft",
"lifeboat",
"distributed",
"consensus",
"protocol"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/markwylde/liferaft/issues"
},
"homepage": "https://github.com/markwylde/liferaft",
"dependencies": {
"emits": "^3.0.0",
"encoding-down": "^7.1.0",
"eventemitter3": "^5.0.1",
"extendible": "^0.1.1",
"immediate": "^3.3.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"millisecond": "^0.1.2",
"modification": "^1.0.0",
"one-time": "^1.0.0",
"promise-queue": "^2.2.5",
"tick-tock": "^1.0.0"
},
"devDependencies": {
"assume": "^2.3.0",
"diagnostics": "^2.0.2",
"memdown": "^6.1.1",
"mkdirp": "^3.0.1",
"mocha": "^10.7.3",
"rimraf": "^6.0.1"
}
}