-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
44 lines (44 loc) · 1012 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
41
42
43
44
{
"name": "swim",
"version": "0.6.0",
"description": "Gossip protocol based on SWIM",
"main": "index.js",
"scripts": {
"cover": "covert test/index -q",
"lint": "jshint . --exclude-path=./.gitignore && jscs .",
"test": "npm run lint && node test/index | tap-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/mrhooray/swim-js.git"
},
"keywords": [
"gossip",
"swim",
"failure",
"detection",
"membership"
],
"author": "Rui Hu <code@mrhooray.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrhooray/swim-js/issues"
},
"homepage": "https://github.com/mrhooray/swim-js",
"devDependencies": {
"async": "^0.9.0",
"covert": "^1.0.1",
"metrics": "^0.1.9",
"jscs": "^1.10.0",
"jshint": "^2.6.0",
"tap-spec": "^2.2.0",
"tape": "^3.4.0"
},
"dependencies": {
"clone": "^1.0.2",
"commander": "^2.6.0",
"debug": "^2.1.1",
"farmhash": "^2.0.0",
"msgpack": "^1.0.2"
}
}