-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "metallb-node-route-agent",
"version": "0.3.0",
"description": "manage node routes",
"main": "agent.js",
"scripts": {
"start": "node --nouse-idle-notification --expose-gc --max-old-space-size=8192 agent.js",
"eslint": "eslint .",
"prettier": "prettier --config .prettierrc.js '**/*.js' --write"
},
"author": "Travis Glenn Hansen <[email protected]>",
"bugs": {
"url": "https://github.com/travisghansen/metallb-node-route-agent/issues"
},
"homepage": "https://github.com/travisghansen/metallb-node-route-agent",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/travisghansen/metallb-node-route-agent.git"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"async-mutex": "^0.4.0",
"cidr-calc": "^1.0.3",
"ip-address": "^8.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lru-cache": "^7.14.1",
"netlink": "^0.2.2",
"query-string": "^7.1.3",
"request": "^2.88.2",
"uri-js": "^4.4.1",
"winston": "^3.6.0"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"esprima": "^4.0.1",
"prettier": "^2.6.1"
}
}