-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.52 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "konfigure",
"repository": {
"type": "git",
"url": "[email protected]:edobry/konfigure.git"
},
"version": "0.0.0",
"author": "Eugene Dobry @edobry",
"bin": {
"konfigure": "./bin/run"
},
"bugs": "https://github.com/edobry/konfigure/issues",
"devDependencies": {
"@oclif/test": "^2",
"@types/jest": "^27.0.3",
"@types/node-dir": "^0.0.34",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.7.0",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-autofix": "^1.2.3",
"eslint-plugin-unicorn": "^38.0.1",
"globby": "^10.0.2",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^8.10.2",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/edobry/konfigure",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "konfigure",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
],
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
},
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"test": "jest --passWithNoTests --all",
"precommit": "pre-commit run --all-files",
"docs": "npx oclif readme --multi --aliases"
},
"types": "lib/index.d.ts",
"dependencies": {
"@kubernetes/client-node": "^0.16.3",
"@oclif/core": "^1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.0.1",
"@oclif/plugin-version": "^1",
"@types/common-tags": "^1.8.1",
"@types/js-yaml": "^4.0.3",
"@types/node": "^17.0.18",
"@types/tmp": "^0.2.1",
"chalk": "^4.1.2",
"cli-highlight": "^2.1.11",
"common-tags": "^1.8.0",
"deepmerge": "^4.2.2",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"node-dir": "^0.1.17",
"pino": "^8.1.0",
"pino-pretty": "^9.1.1",
"tmp": "^0.2.1",
"tmp-promise": "^3.0.2",
"tslib": "^1.14.1",
"zx": "^4.2.0"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}