forked from che-incubator/chectl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.07 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": "chectl",
"description": "Eclipse Che CLI",
"version": "0.0.2",
"author": "Mario Loriedo @l0rd",
"bin": {
"chectl": "./bin/run"
},
"bugs": "https://github.com/che-incubator/chectl/issues",
"dependencies": {
"@kubernetes/client-node": "^0.7.2",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/parser": "^3.7.0",
"@oclif/plugin-autocomplete": "^0.1.0",
"@oclif/plugin-help": "^2",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^5.0.4",
"@types/ncp": "^2.0.1",
"@types/node-notifier": "^0.0.28",
"@types/request": "^2.48.1",
"@types/websocket": "^0.0.40",
"@types/ws": "^6.0.1",
"axios": "^0.18.0",
"cli-ux": "^4.9.3",
"command-exists": "^1.2.8",
"esprima": "^4.0.1",
"execa": "^1.0.0",
"fancy-test": "^1.4.1",
"fs": "^0.0.1-security",
"fs-extra": "^7.0.1",
"listr": "^0.14.3",
"listr-verbose-renderer": "^0.5.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-notifier": "^5.3.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@oclif/tslint": "^3",
"@types/chai": "^4",
"@types/execa": "^0.9.0",
"@types/jest": "24.0.3",
"@types/js-yaml": "^3.12.0",
"@types/node": "^10",
"globby": "^8",
"jest": "^24.1.0",
"js-yaml": "^3.12.1",
"nock": "^10.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^7",
"tslint": "^5",
"typescript": "^3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/che-incubator/chectl",
"keywords": [
"oclif"
],
"license": "EPL-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "chectl",
"macos": {
"identifier": "che-incubator.chectl"
},
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
],
"topics": {
"server": {
"description": "control Che server"
},
"workspace": {
"description": "control Che workspaces"
}
}
},
"pkg": {
"scripts": [
"lib/**/*.js"
],
"assets": [
"templates/**/*"
]
},
"repository": "che-incubator/chectl",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"tslint-fix": "tslint --fix -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"test-watch": "jest --watchAll",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"testRegex": "/test/(api|platforms|installers)/.*.test.ts",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}