-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 2 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
{
"name": "zowe",
"version": "0.0.1",
"description": "framework for compiling a web-help from a command tree",
"author": "",
"license": "EPL-2.0",
"private": true,
"homepage": "https://github.com/zowe/zowe-cli-web-help-generator#readme",
"bugs": {
"url": "https://github.com/zowe/zowe-cli-web-help-generator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zowe/zowe-cli-web-help-generator.git"
},
"keywords": [
"CLI",
"framework",
"zowe"
],
"files": [],
"scripts": {
"build": "npm run retrieveCommandTree && npm run mergeCommandTrees && npm run generateWebHelp",
"build:local": "zowe --ac --rfj > commandTree.json && echo 'Command Tree generated successfully.' && npm run mergeCommandTrees && npm run generateWebHelp",
"clean": "rimraf commandTree.json package-lock.json generatedWebHelp",
"contribute": "npm run retrieveCommandTree && npm run trim",
"retrieveCommandTree": "npx zowe --ac --rfj > commandTree.json && echo 'Command Tree generated successfully.'",
"generateWebHelp": "ts-node scripts/generate.ts",
"lint": "eslint \"scripts/*.ts\"",
"license": "node scripts/updateLicense.js",
"mergeCommandTrees": "ts-node scripts/merge.ts",
"prepare": "husky install",
"trim": "ts-node scripts/trim.ts"
},
"dependencies": {
"@types/node": "^20.14.8",
"@zowe/cli": "^8.0.0",
"@zowe/imperative": "^8.0.0",
"husky": "^8.0.3",
"jsonc": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.4.4",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^9.3.3",
"rimraf": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"bin": "zowe"
}