-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "conflux",
"version": "1.1.8",
"description": "Distributed predictable state container",
"main": "lib/factory",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/**/*.js --reporter=spec --statements=100 --coverage-report=text-summary",
"coverage": "tap test/**/*.js --reporter=spec --coverage --coverage-report=html && open -a \"Safari\" coverage/index.html",
"test-ci": "tap test/**/*.js --reporter=spec --statements=100",
"tdd": "nodemon -x npm test",
"doctoc": "doctoc README.md",
"prepublish": "in-publish && npm run doctoc || not-in-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ben-ng/conflux.git"
},
"keywords": [
"raft",
"paxos"
],
"author": "Ben Ng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ben-ng/conflux/issues"
},
"homepage": "https://github.com/ben-ng/conflux#readme",
"devDependencies": {
"async": "^1.5.2",
"doctoc": "^0.15.0",
"nodemon": "^1.4.1",
"tap": "^5.1.1"
},
"dependencies": {
"bluebird": "^3.1.1",
"gaggle": "^2.1.3",
"in-publish": "^2.0.0",
"joi": "^6.10.0",
"lodash": "^4.0.0",
"uuid": "^2.0.1"
}
}