-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
117 lines (117 loc) · 2.84 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
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "kubevious",
"version": "1.0.62",
"description": "Kubevious CLI",
"keywords": [
"kubernetes",
"k8s",
"validation",
"validate",
"lint",
"security",
"check",
"sanity",
"CRD"
],
"main": "dist/index.js",
"bin": {
"kubevious": "./bin/kubevious"
},
"preferGlobal": true,
"types": "dist",
"files": [
"bin/**/*",
"dist/**/*",
"assets/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"build": "tsc",
"format": "prettier --write ./src/ ./test/",
"format-check": "prettier --write ./src/ ./test/",
"lint": "eslint",
"start": "tsc && node dist/index.js"
},
"author": "Ruben Hakopian <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kubevious/cli/issues"
},
"homepage": "https://kubevious.io",
"repository": {
"type": "git",
"url": "https://github.com/kubevious/cli"
},
"dependencies": {
"@kubevious/entity-meta": "^1.0.81",
"@kubevious/kubik": "^1.0.33",
"@kubevious/state-registry": "^1.0.19",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"axios": "^1.4.0",
"chalk": "4.1.2",
"cli-table": "^0.3.11",
"commander": "^10.0.1",
"express-openapi-validate": "^0.6.1",
"fast-glob": "^3.2.12",
"k8s-super-client": "^2.1.5",
"kubernetes-types": "^1.26.0",
"node-emoji": "^1.11.0",
"openapi-schema-validator": "^12.1.0",
"ora": "5.4.1",
"semver": "^7.5.0",
"the-lodash": "^2.1.2",
"the-logger": "^2.1.1",
"the-promise": "^2.1.3",
"tmp": "^0.2.1",
"uuid-parse": "^1.1.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.3",
"@types/node-emoji": "^1.8.2",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"should": "^13.2.3",
"ts-node": "^10.7.0",
"typescript": "^5.0.4"
},
"resolutions": {
"the-lodash": "^2.1.2",
"the-logger": "^2.1.1",
"the-promise": "^2.1.3",
"k8s-super-client": "^2.1.5",
"@kubevious/state-registry": "^1.0.19",
"@kubevious/kubik": "^1.0.33",
"@kubevious/entity-meta": "^1.0.81"
},
"pkg": {
"scripts": [
"dist/**/*.js",
"dist/**/*.cjs",
"node_modules/**/*.js",
"node_modules/**/*.cjs"
],
"assets": "assets/**/*",
"targets": [
"node16-alpine-x64",
"node16-alpine-arm64",
"node16-linux-x64",
"node16-linux-arm64",
"node16-linuxstatic-x64",
"node16-linuxstatic-arm64",
"node16-win-x64",
"node16-win-arm64",
"node16-macos-x64",
"node16-macos-arm64"
],
"outputPath": "binary"
}
}