forked from morphy2k/k8s-mongo-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "k8s-mongo-sidecar",
"description": "Kubernetes sidecar for mongoDB",
"version": "0.5.2",
"license": "MIT",
"author": {
"name": "Markus Wiegand",
"email": "[email protected]",
"url": "https://morphy2k.dev"
},
"contributors": "https://github.com/morphy2k/k8s-mongo-sidecar/graphs/contributors",
"repository": {
"type": "git",
"url": "https://github.com/morphy2k/k8s-mongo-sidecar.git"
},
"bugs": {
"url": "https://github.com/morphy2k/k8s-mongo-sidecar/issues"
},
"engines": {
"node": ">=14.15.3"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src/ && prettier --check src/",
"fmt": "prettier --write src/",
"test": "echo \"No tests\""
},
"keywords": [
"kubernetes",
"k8s",
"mongo",
"mongodb",
"sidecar",
"docker",
"replica",
"replicaset"
],
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.3.2"
},
"dependencies": {
"ip": "^1.1.5",
"kubernetes-client": "^9.0.0",
"luxon": "^2.0.2",
"mongodb": "^3.7.0"
}
}