-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.6 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.6 KB
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
{
"name": "code4z-extension-pack",
"license": "SEE LICENSE IN LICENSE",
"displayName": "Code4z Foundation",
"description": "Code4z extension pack for Mainframe users working with z/OS applications and tools",
"version": "2.2.1",
"publisher": "broadcomMFD",
"icon": "icon.png",
"galleryBanner": {
"color": "#f0efe7",
"theme": "light"
},
"engines": {
"vscode": "^1.10.0"
},
"keywords": [
"z/OS",
"zowe",
"mainframe",
"hlasm",
"cobol",
"jcl",
"pl/i",
"endevor",
"debugger",
"abend"
],
"categories": [
"Extension Packs"
],
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/exec": "^5.0.0",
"semantic-release": "^17.0.7"
},
"extensionPack": [
"broadcomMFD.cobol-language-support",
"Zowe.vscode-extension-for-zowe",
"broadcomMFD.explorer-for-endevor",
"broadcomMFD.hlasm-language-support",
"broadcomMFD.debugger-for-mainframe",
"broadcomMFD.ccf",
"broadcomMFD.data-editor-for-mainframe",
"broadcomMFD.abend-analyzer",
"broadcomMFD.pli-language-support",
"broadcomMFD.jcl-language-support"
],
"contributes": {
"walkthroughs": [
{
"id": "Code4zDay1",
"title": "Code4z Foundation Day 1 Task Checklist",
"description": "Use this checklist to execute the key tasks that we recommend before you start using Code4z Foundation extensions.",
"steps": [
{
"id": "profile",
"title": "Set Up a Zowe Profile",
"description": "Create a Zowe Profile and add it to the Data Sets view in Zowe Explorer to connect to the mainframe and open mainframe data sets on VS Code, submit JCL, and perform other actions. To unlock all features, we recommend that you include your mainframe credentials within your Zowe Profile. \n[Add Zowe Profile](command:zowe.ds.addSession)",
"media": {
"image": "foundationpack.png",
"altText": "Code4z"
},
"completionEvents": [ "onCommand:zowe.ds.addSession"
]
},
{
"id": "javapath",
"title": "Ensure that your Java PATH variable is configured",
"description": "Several Code4z extensions require Java (version 8 or higher) to be configured along with the PATH variable. For more information, see the Java documentation. \n[Java documentation (opens in new window)](https://www.java.com/en/download/help/path.html)",
"media": {
"image": "extensions4.png",
"altText": "Code4z"
},
"completionEvents": [
]
},
{
"id": "de4mtt",
"title": "Specify server for Data Editor for Mainframe",
"description": "To use the Data Editor for Mainframe extension, specify the address of your File Master Plus Server in your extension settings. \n[Open Extension Settings](command:workbench.action.openSettings?%22@ext:BroadcomMFD.data-editor-for-mainframe%22)",
"media": {
"image": "extensions4.png",
"altText": "Code4z"
},
"completionEvents": [
]
},
{
"id": "aa4mtt",
"title": "Add a connection to your server for Abend Analyzer for Mainframe",
"description": "To use the Abend Analyzer for Mainframe extension, add a connection and specify the address of your Testing Tools Server or Zowe API ML Gateway. \n[Add a connection](command:symdump.newConnection)",
"media": {
"image": "extensions4.png",
"altText": "Code4z"
},
"completionEvents": [ "onCommand:symdump.newConnection"
]
},
{
"id": "de4msecure",
"title": "Configure Debugger for Mainframe for a Secure Connection (Optional)",
"description": "Consult the \"Set Up Secure Connection\" section in the Debugger for Mainframe readme file for instructions on how to configure Debugger for Mainframe for a Secure Connection. You can choose one of several methods to import the certificate. \n[Documentation (opens in new window)](https://marketplace.visualstudio.com/items?itemName=broadcomMFD.debugger-for-mainframe)",
"media": {
"image": "extensions4.png",
"altText": "Code4z"
},
"completionEvents": [
]
},
{
"id": "seemore",
"title": "Learn how to use individual extensions",
"description": "See more walkthroughs on how to use individual Code4z extensions, including Debugger for Mainframe and Explorer for Endevor. \n[Select a Guide](command:welcome.showAllWalkthroughs)",
"media": {
"image": "extensions4.png",
"altText": "Code4z"
},
"completionEvents": ["onCommand:welcome.showAllWalkthroughs"]
}
]
}
]
}
}