-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.65 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
{
"name": "@gardener-dashboard/kube-config",
"version": "1.0.0",
"description": "Kubernetes Config",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gardener/dashboard.git",
"directory": "packages/kube-config"
},
"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/polling-watcher": "workspace:^",
"@gardener-dashboard/test-utils": "workspace:^",
"gtoken": "^7.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.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",
"jest": "^29.7.0",
"neostandard": "^0.12.0"
},
"jest": {
"restoreMocks": true,
"verbose": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"lib/**/*.js"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"packageManager": "yarn@4.8.1",
"engines": {
"node": "^22.7.0"
}
}