-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.85 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
{
"name": "kubesdk",
"version": "0.0.0",
"description": "Kubernetes SDK",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"test": "$(node spec/setup.js) && jest -w10",
"eslint:fix": "eslint --fix '**/*.{t,j}s'",
"eslint:check": "eslint '**/*.{t,j}s'",
"build": "tsc"
},
"keywords": [],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cubos/kubesdk.git"
},
"bugs": {
"url": "https://github.com/cubos/kubesdk/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/cubos/kubesdk#readme",
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.4.0",
"axios-logger": "^2.6.2",
"axios-retry": "^3.5.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"js-yaml": "^4.1.0",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.1",
"slugify": "^1.6.6",
"ws": "^8.13.0",
"zip-a-folder": "^1.1.5"
},
"devDependencies": {
"@cubos/eslint-config": "^2.1.0",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/json-schema": "^7.0.11",
"@types/node": "^20.2.3",
"@types/ws": "^8.5.4",
"as-typed": "^1.3.2",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"jest": {
"preset": "ts-jest",
"modulePaths": [
"<rootDir>/src/"
],
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/spec/utils.ts"
],
"verbose": true,
"testTimeout": 60000,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"setupFilesAfterEnv": [
"jest-extended/all"
]
}
}