-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
{
"name": "leader-election-mongo",
"version": "0.0.2",
"description": "Leader election backed by MongoDB",
"main": "src/index.js",
"scripts": {
"eslint": "eslint src/index.js",
"eslint-fix": "eslint --fix src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coosto/leader-election-mongo.git"
},
"keywords": [
"mongo",
"leader"
],
"author": "Jeremy Buchmann",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coosto/leader-election-mongo/issues"
},
"homepage": "https://github.com/coosto/leader-election-mongo#readme",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "2.0.5"
},
"dependencies": {
"mongodb": "^3.5.8"
}
}