-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.94 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@gardener-dashboard/kube-client",
"version": "1.0.0",
"description": "Kubernetes Client",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gardener/dashboard.git",
"directory": "packages/kube-client"
},
"bugs": {
"url": "https://github.com/gardener/dashboard/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"lint-sarif": "yarn lint --format=@microsoft/eslint-formatter-sarif",
"test": "jest",
"test-coverage": "yarn test --coverage"
},
"dependencies": {
"@gardener-dashboard/kube-config": "workspace:^",
"@gardener-dashboard/logger": "workspace:^",
"@gardener-dashboard/request": "workspace:^",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mixwith": "^0.1.1",
"uuid": "^11.0.0"
},
"devDependencies": {
"@gardener-dashboard/test-utils": "workspace:^",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"abort-controller": "^3.0.0",
"eslint": "^9.11.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-security": "^3.0.1",
"express": "^4.18.3",
"jest": "^29.7.0",
"neostandard": "^0.12.0"
},
"jest": {
"restoreMocks": true,
"verbose": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"lib/**/*.js"
],
"testEnvironment": "node",
"transformIgnorePatterns": [
"/node_modules/",
"\\.pnp\\.[^\\/]+$"
],
"coverageThreshold": {
"global": {
"branches": 73,
"functions": 97,
"lines": 94,
"statements": 94
}
},
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"packageManager": "yarn@4.8.1",
"engines": {
"node": "^22.7.0"
}
}