-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
92 lines (92 loc) · 2.77 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
{
"name": "@zowe/cli",
"version": "7.0.0-next.202110211759",
"description": "Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.",
"author": "Broadcom",
"license": "EPL-2.0",
"homepage": "https://github.com/zowe/zowe-cli/tree/master/packages/cli#readme",
"bugs": {
"url": "https://github.com/zowe/zowe-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zowe/zowe-cli.git"
},
"bin": {
"bright": "./lib/main.js",
"zowe": "./lib/main.js"
},
"keywords": [
"zosmf",
"mainframe",
"CLI",
"zos",
"z/OSMF",
"mvs",
"os390",
"z/OS",
"zowe"
],
"files": [
"lib",
"prebuilds",
"scripts",
"web-help-logo.png"
],
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"imperative": {
"configurationModule": "lib/imperative.js"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"preinstall": "node ./scripts/preinstall",
"postinstall": "node ./scripts/validatePlugins && node ./scripts/printSuccessMessage",
"build": "tsc --pretty",
"watch": "tsc --pretty --watch",
"clean": "rimraf lib",
"lint": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"",
"lint:packages": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"",
"lint:tests": "eslint \"**/__tests__/**/*.ts\"",
"circularDependencyCheck": "madge -c lib",
"typedoc": "typedoc --options ./typedoc.json ./src/",
"typedocSpecifySrc": "typedoc --options ./typedoc.json"
},
"dependencies": {
"@zowe/core-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/imperative": "5.0.0-next.202110201735",
"@zowe/perf-timing": "1.0.7",
"@zowe/provisioning-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-console-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-files-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-jobs-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-tso-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-uss-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zos-workflows-for-zowe-sdk": "7.0.0-next.202110211759",
"@zowe/zosmf-for-zowe-sdk": "7.0.0-next.202110211759",
"get-stdin": "7.0.0",
"lodash": "4.17.21",
"minimatch": "3.0.4"
},
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^12.12.24",
"@zowe/cli-test-utils": "7.0.0-next.202110211759",
"comment-json": "^4.1.0",
"eslint": "^7.32.0",
"js-yaml": "^3.13.1",
"madge": "^4.0.1",
"rimraf": "^2.6.3",
"strip-ansi": "^6.0.1",
"typedoc": "^0.16.0",
"typescript": "^3.8.0"
},
"optionalDependencies": {
"keytar": "7.7.0"
},
"engines": {
"node": ">=8.0.0"
}
}