-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "gaggle",
"version": "2.1.4",
"description": "A distributed log",
"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/gaggle.git"
},
"keywords": [
"raft",
"paxos"
],
"author": "Ben Ng <[email protected]>",
"license": "MIT",
"browser": {
"./channels/redis-channel.js": false,
"./lib/socket-io-server-enhancer.js": false
},
"bugs": {
"url": "https://github.com/ben-ng/gaggle/issues"
},
"homepage": "https://github.com/ben-ng/gaggle#readme",
"devDependencies": {
"async": "^1.5.2",
"doctoc": "^0.15.0",
"nodemon": "^1.4.1",
"tap": "^5.1.1"
},
"dependencies": {
"bluebird": "^3.1.1",
"in-publish": "^2.0.0",
"joi": "^6.10.0",
"lodash": "^4.0.0",
"once": "^1.3.3",
"redis": "^2.4.2",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"uuid": "^2.0.1"
}
}