-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "crd2jsonschema",
"version": "0.2.0",
"description": "A simple utility that converts a Kubernetes CustomResourceDefinition to a JSON Schema",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"crd2jsonschema": "./bin/crd2jsonSchema"
},
"files": [
"/lib",
"/bin"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nikitawootten/crd2jsonSchema"
},
"bugs": {
"url": "https://github.com/nikitawootten/crd2jsonSchema/issues"
},
"keywords": [
"kubernetes",
"k8s",
"json",
"json-schema",
"yaml"
],
"author": "Nikita Wootten <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/json-schema": "^7.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^10.0.1",
"yaml": "^2.2.1"
}
}