-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 961 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
39
40
{
"name": "raft-leveldb",
"version": "1.0.2",
"description": "Distributed, consistent and highly available key-value storage system (using LevelDB) based on Raft consensus algorithm.",
"main": "client.js",
"dependencies": {
"double-ended-queue": "^2.1.0-0",
"level": "^1.4.0",
"snappy": "^5.0.2",
"zmq": "^2.14.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertdb/Raft.git"
},
"keywords": [
"raft",
"consensus",
"paxos",
"leveldb",
"distributed",
"ha",
"consistent",
"key-value",
"storage",
"zmq",
"snappy"
],
"author": "Albert Duato Botam",
"license": "SEE LICENSE IN LICENCE.pdf",
"bugs": {
"url": "https://github.com/albertdb/Raft/issues"
},
"homepage": "https://github.com/albertdb/Raft#readme"
}