-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "skiff-algorithm",
"version": "0.8.2",
"description": "Implementation of the Raft consensus algorithm in Node.js",
"scripts": {
"test": "istanbul cover lab -- tests/*.js -l && istanbul check-coverage --statements 93 --functions 90 --lines 90 --branches 80",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"codestyle": "jscs -p google lib/ index.js tests/",
"coverage": "open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/pgte/skiff.git"
},
"keywords": [
"raft",
"distributed",
"consensus",
"election",
"vote"
],
"author": "pgte",
"license": "ISC",
"bugs": {
"url": "https://github.com/pgte/skiff/issues"
},
"homepage": "https://github.com/pgte/skiff",
"devDependencies": {
"jshint": "^2.5.6",
"lab": "^4.5.1",
"sinon": "^1.10.3",
"jscs": "^1.6.2",
"pre-commit": "0.0.9",
"istanbul": "^0.3.2"
},
"dependencies": {
"async": "^0.9.0",
"cuid": "^1.2.4",
"propagate": "^0.3.0",
"xtend": "^4.0.0"
},
"pre-commit": [
"codestyle",
"jshint",
"test"
]
}