-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.27 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.27 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
56
57
58
59
60
61
62
63
{
"name": "uds-core",
"version": "0.6.0",
"description": "A collection of capabilities for UDS Core",
"keywords": [
"pepr",
"k8s",
"policy-engine",
"pepr-module",
"security"
],
"engines": {
"node": ">=20.0.0"
},
"pepr": {
"name": "UDS Core",
"uuid": "uds-core",
"onError": "reject",
"logLevel": "info",
"alwaysIgnore": {
"namespaces": []
},
"admission": {
"alwaysIgnore": {
"namespaces": [
"zarf"
]
}
},
"watch": {
"alwaysIgnore": {
"namespaces": [
"zarf"
]
}
},
"additionalWebhooks": [
{
"failurePolicy": "Ignore",
"namespace": "istio-system"
}
]
},
"scripts": {
"k3d-setup": "k3d cluster delete pepr-dev && k3d cluster create pepr-dev --k3s-arg '--debug@server:0'",
"test:unit": "vitest run src/pepr/"
},
"dependencies": {
"pepr": "1.1.5"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.0",
"globals": "^17.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"vitest": "^4.0.0"
}
}