-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 985 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
{
"name": "followtheleader",
"version": "2.0.9",
"description": "Zero-conf leader election based on bonjour",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "./node_modules/typescript/bin/tsc -w",
"build": "npm run lint && ./node_modules/typescript/bin/tsc",
"lint": "./node_modules/tslint/bin/tslint -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remie/followtheleader.git"
},
"keywords": [
"leader",
"election",
"cluster"
],
"author": "Remie Bolte ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/remie/followtheleader/issues"
},
"homepage": "https://github.com/remie/followtheleader#readme",
"dependencies": {
"aws-sdk": "^2.307.0",
"bonjour": "^3.5.0"
},
"devDependencies": {
"@types/node": "^10.7.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}