forked from yldio/skiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.29 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
{
"name": "skiff",
"version": "1.10.0",
"description": "Raft for Node.js",
"main": "skiff.js",
"scripts": {
"test": "npm run quick-tests",
"quick-tests": "lab -vl test/active-network.js && lab -vl test/passive-network.js && lab -vl test/incoming-dispatcher.js && lab -vl test/election.js && lab -vl test/log-replication.js && lab -vl test/log-replication-catchup.js && lab -vl test/log-compaction.js && lab -vl test/leveldown.js && lab -vl test/levelup.js && lab -vl test/persistence.js && lab -vl test/remote-commands.js && lab -vl test/weakening.js",
"resilience-tests": "npm run resilience-tests-memory && npm run resilience-tests-disk",
"resilience-tests-memory": "lab test/resilience/resilience-chaos-memory.js && lab test/resilience/resilience-order-memory.js",
"resilience-tests-disk": "lab test/resilience/resilience-order-disk.js && lab test/resilience/resilience-chaos-disk.js",
"test-some": "lab -vl test/active-network.js test/election.js",
"test-coverage": "node --harmony node_modules/istanbul/lib/cli.js cover -- lab -vl && istanbul check-coverage",
"style": "eslint skiff.js lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgte/skiff.git"
},
"keywords": [
"raft",
"distributed",
"consensus",
"leveldb"
],
"author": "pgte",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgte/skiff/issues"
},
"homepage": "https://github.com/pgte/skiff#readme",
"devDependencies": {
"code": "^3.0.1",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.4",
"lab": "^10.9.0",
"left-pad": "^1.1.1",
"memdown": "^1.2.0",
"mkdirp": "^0.5.1",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"split": "^1.0.0",
"wreck": "^10.0.0"
},
"pre-commit": [
"style",
"test"
],
"dependencies": {
"abstract-leveldown": "^2.6.0",
"async": "^2.0.0",
"concat-stream": "^1.5.1",
"debug": "^2.2.0",
"deepmerge": "^0.2.10",
"level-sublevel": "^6.5.4",
"leveldown": "^1.4.6",
"levelup": "^1.3.2",
"msgpack5": "^3.4.0",
"multiaddr": "^2.0.2",
"once": "^1.3.3",
"reconnect-core": "^1.3.0",
"through2": "^2.0.1",
"uuid": "^2.0.2"
}
}