-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@fbl-plugins/k8s-kubectl",
"version": "1.4.1",
"description": "FBL plugin for K8s Kubectl CLI",
"main": "dist/index.js",
"scripts": {
"commit": "npx git-cz",
"commit:retry": "npx git-cz --retry",
"tsc": "tsc",
"rimraf": "rimraf",
"depcheck": "yarn-check",
"start": "node dist/src/cli.js",
"test": "nyc --reporter=html --reporter=text mocha",
"test:mocha": "mocha",
"docker:test": "rimraf coverage/ && rimraf .nyc_output/ && rimraf mochawesome-report/ && docker-compose up --build --abort-on-container-exit",
"build": "rimraf ./dist/ && tsc",
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts index.ts",
"prettify": "prettier src/**/*.{md,ts,json} test/**/*.{md,ts,json} index.{md,ts,json} --write --config .prettierrc.yml && tslint 'src/**/*.ts' 'test/**/*.ts' 'index.ts' --fix"
},
"author": "FireBlink LTD",
"license": "MIT",
"dependencies": {
"glob": "7.1.7",
"joi": "17.4.0",
"js-yaml": "4.1.0"
},
"peerDependencies": {
"fbl": ">=1.15.1 <2.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@fireblink/k8s-api-client": "1.2.0",
"@types/chai": "4.2.18",
"@types/form-data": "2.5.0",
"@types/glob": "7.1.3",
"@types/joi": "17.2.3",
"@types/js-yaml": "4.0.1",
"@types/node": "15.12.2",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"commitizen": "4.2.4",
"conventional-changelog-cli": "2.1.1",
"cz-conventional-changelog": "3.3.0",
"fbl": "1.15.1",
"husky": "6.0.0",
"jsonlint": "1.6.3",
"lint-staged": "11.0.0",
"mocha": "9.0.0",
"mocha-typescript": "1.1.17",
"mochawesome": "6.2.2",
"nyc": "15.1.0",
"prettier": "2.3.1",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-node": "10.0.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.2",
"yarn-check": "0.0.3"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"exclude": [
"src/**/index.ts",
"src/interfaces/*.ts",
"**/*.d.ts",
"coverage/**"
],
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src"
]
},
"contributors": [
{
"name": "Vladyslav Tkachenko",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/FireBlinkLTD/fbl-plugins-k8s-kubectl.git"
},
"keywords": [
"fireblink",
"fbl",
"plugin",
"plugins",
"kubectl",
"k8s",
"kubernetes",
"deployment",
"orchestration"
]
}