-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "sd-swim",
"version": "0.6.0",
"description": "Self- discovery version of SWIM membership protocol",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node --no-warnings ./node_modules/.bin/lab",
"ci": "lab -r console -o stdout -r lcov -o ./coverage/lcov.info && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls ./coverage/lcov.info",
"lint": "eslint .",
"depcheck": "dependency-check package.json --unused --no-dev --entry test/*.js --entry index.js",
"nsp": "nsp check",
"prepush": "npm run nsp && npm run depcheck && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcopiraccini/sd-swim.git"
},
"keywords": [
"SWIM",
"membership",
"discovery"
],
"author": {
"name": "Marco Piraccini",
"email": "marco.piraccini@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/marcopiraccini/sd-swim/issues"
},
"homepage": "https://github.com/marcopiraccini/sd-swim#readme",
"dependencies": {
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"pino": "^4.5.3",
"propagate": "^1.0.0",
"protocol-buffers": "^3.2.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"coveralls": "^2.13.1",
"dependency-check": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.13.4",
"lab": "^13.1.0",
"lab-espower-transformer": "^1.1.0",
"nsp": "^2.6.3",
"power-assert": "^1.4.3",
"proxyquire": "^1.8.0"
}
}