-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "service-listener",
"version": "0.1.80",
"engines": {
"node": "^16"
},
"description": "A script to listen to kubernetes to automatically identify running deployments/services",
"homepage": "https://github.com/WealthWizardsEngineering/service-listener",
"repository": {
"type": "git",
"url": "https://github.com/WealthWizardsEngineering/service-listener.git"
},
"scripts": {
"start": "node service-listener.js",
"test:unit": "tape 'test/unit/**/*.spec.js'",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"dependency-check": "yarn audit --json | node ./audit"
},
"author": "Wealth Wizards",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0",
"lodash.capitalize": "^4.2.1",
"proxyquire": "^2.1.3",
"ramda": "^0.27.1",
"sinon": "^9.2.4",
"synp": "^1.9.7",
"tape": "^5.1.1"
},
"dependencies": {
"@dot-i/k8s-operator": "^1.2.0",
"@kubernetes/client-node": "^0.16.1",
"bunyan": "^2.0.5",
"co": "^4.6.0",
"consul": "^0.40.0",
"envalid": "^6.0.2",
"json-stream": "^1.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"resolutions": {
"eslint-plugin-import/debug": "^3.1.0"
}
}