-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.02 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
{
"name": "@monokle/validation",
"version": "0.33.0",
"description": "Kubernetes resource validation",
"author": "Kubeshop",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "lib/index.js",
"source": "src/index.ts",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"exports": {
".": {
"node": "./lib/node.js",
"module": "./lib/index.js",
"default": "./lib/index.js"
},
"./custom": {
"types": "./lib/custom.d.ts",
"module": "./lib/custom.js"
}
},
"files": [
"lib/**"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run --segfault-retry=3 --no-threads",
"test:snapshot": "vitest --update",
"build": "rimraf lib && tsc --build tsconfig.build.json",
"format:all": "prettier --write \"{src,test}/**/*.{js,jsx,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kubeshop/monokle-core.git"
},
"keywords": [
"monokle",
"kubernetes",
"validation",
"yaml"
],
"bugs": {
"url": "https://github.com/kubeshop/monokle-core/issues"
},
"homepage": "https://github.com/kubeshop/monokle-core/tree/main/packages/validation",
"devDependencies": {
"@monokle/parser": "*",
"@types/isomorphic-fetch": "0.0.36",
"@types/lodash": "4.14.185",
"@types/pako": "^2.0.1",
"@types/require-from-string": "1.2.1",
"@types/uuid": "9.0.1",
"esbuild": "0.17.18",
"rimraf": "3.0.2",
"tiny-glob": "0.2.9",
"type-fest": "3.0.0",
"typescript": "4.8.3",
"vitest": "0.29.2"
},
"dependencies": {
"@monokle/types": "*",
"@open-policy-agent/opa-wasm": "1.8.0",
"@rollup/plugin-virtual": "3.0.1",
"ajv": "6.12.6",
"change-case": "4.1.2",
"get-random-values": "^3.0.0",
"isomorphic-fetch": "3.0.0",
"lodash": "4.17.21",
"node-fetch": "3.3.0",
"pako": "^2.1.0",
"require-from-string": "2.0.2",
"rollup": "3.18.0",
"uuid": "9.0.0",
"yaml": "2.2.2",
"zod": "3.19.1"
}
}