-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
51
52
53
54
55
{
"name": "@thinkdeep/k8s",
"version": "5.0.11",
"description": "K8s node client for processing template string yaml configurations instead of value assignment to k8s javascript client object properties (i.e, V1CronJob).",
"main": "src/index.js",
"repository": "git@github.com:ThinkDeepTech/k8s.git",
"author": "haydenmcp <hayden.mcparlane@gmail.com>",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"lint": "eslint --fix ./**/*.js",
"tests": "c8 --clean mocha ./test/**/*.test.js ./test/*.test.js",
"tests:coverage:publish": "npm run tests && cat ./coverage/lcov.info | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run tests"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@kubernetes/client-node": "0.15",
"@thinkdeep/k8s-manifest": "^2.0.1"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^1.1.2",
"lint-staged": "^12.4.1",
"mocha": "^9.1.3",
"prettier": "^2.2.1",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0"
},
"keywords": [
"Kubernetes",
"K8s",
"Node",
"JavaScript",
"Client"
]
}