forked from gioboa/jira-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
378 lines (378 loc) · 12 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
{
"name": "jira-plugin",
"displayName": "Jira Plugin",
"description": "Jira integration for vscode",
"version": "0.15.2",
"publisher": "gioboa",
"icon": "images/icons/icon.png",
"galleryBanner": {
"color": "#3B4859",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/gioboa/jira-plugin.git"
},
"keywords": [
"Jira",
"vsCode"
],
"author": "gioboa",
"license": "MIT",
"bugs": {
"url": "https://github.com/gioboa/jira-plugin/issues"
},
"homepage": "https://github.com/gioboa/jira-plugin#readme",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"clean": "rm -rf ./out",
"vscode:prepublish": "npm run compile",
"compile": "npm run clean && tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "git update-index --skip-worktree ./test/utils/settings.ts && node ./node_modules/vscode/bin/install",
"test": "npm run compile && TYPE=1 node ./scripts/rename-files.js && node ./node_modules/vscode/bin/test && TYPE=2 node ./scripts/rename-files.js",
"setup:settings": "npm run compile && TYPE=3 node ./scripts/rename-files.js && node ./node_modules/vscode/bin/test && TYPE=4 node ./scripts/rename-files.js",
"setup:settings:insiders": "npm run compile && TYPE=3 node ./scripts/rename-files.js && CODE_VERSION='insiders' node ./node_modules/vscode/bin/test && TYPE=4 node ./scripts/rename-files.js",
"prelint": "prettier --print-width 140 --single-quote --write 'src/**/*.ts'",
"lint": "tslint 'src/**/*.ts' --format stylish --fix"
},
"husky": {
"hooks": {
"pre-commit": "git stash -q --keep-index && npm run lint && npm run test && git add -u && git stash pop -q"
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "Jira configuration",
"properties": {
"jira-plugin.baseUrl": {
"type": "string",
"description": "Your Jira base URL (e.g. https://your_jira_base_url.com or http://your_jira_base_url.com:your_port)",
"default": ""
},
"jira-plugin.username": {
"type": "string",
"description": "Your Jira username or full email for OAuth",
"default": ""
},
"jira-plugin.workingProject": {
"type": "string",
"description": "Jira working project",
"default": ""
},
"jira-plugin.enableWorkingIssue": {
"type": "boolean",
"description": "Enable working issue functionality in status bar",
"default": "true"
},
"jira-plugin.trackingTimeMode": {
"type": "string",
"description": "Configure how the plugin tracking time for the working issue",
"enum": [
"hybrid",
"always",
"vsCodeFocus",
"never"
],
"default": "hybrid"
},
"jira-plugin.trackingTimeModeHybridTimeout": {
"type": "integer",
"description": "Number of minutes to wait for the user to return to VSCode before discarding away time in hybrid time tracking mode",
"default": 30
},
"jira-plugin.worklogMinimumTrackingTime": {
"type": "integer",
"description": "Minimum tracking time for show the Worklog modal and create Jira worklog (expressed in minutes)",
"default": 0
},
"jira-plugin.workingIssueStatues": {
"type": "string",
"description": "Statuses used for extract working issue list (e.g. In Progress, Development In Progress, Test in Progress)",
"default": "In progress"
},
"jira-plugin.additionalStatuses": {
"type": "string",
"description": "Additional custom statuses, used for manage some Jira wrong behavior",
"default": ""
},
"jira-plugin.gitIntegration": {
"type": "boolean",
"description": "Automatically watch for branch switching and select appropriate project and working issue",
"default": false
},
"jira-plugin.groupTaskAndSubtasks": {
"type": "boolean",
"description": "Group task and subtasks into explorer",
"default": false
},
"jira-plugin.numberOfIssuesInList": {
"type": "integer",
"description": "Number of issues to show in list. n.b: If you define high numbers the research can be slow",
"default": 50
},
"jira-plugin.defaultJqlSearch": {
"type": "string",
"description": "Here you can define your default/custom JQL search (n.b: WORKING_PROJECT is the placeholder for the current working project)",
"default": "project = 'WORKING_PROJECT' ORDER BY status ASC, updated DESC"
},
"jira-plugin.enableCheckForNotifications": {
"type": "boolean",
"description": "You can manage your Jira unread notifications inside VsCode notification center (n.b: only new Jira versions has notifications)",
"default": false
},
"jira-plugin.strictSSL": {
"type": "string",
"description": "Request strictSSL param (n.b: if you have problem with certificates, set it to false)",
"enum": [
"",
"true",
"false"
],
"default": ""
},
"jira-plugin.projectsToHide": {
"type": "string",
"description": "Here you can define which projects you want to hide (e.g. PROJECT-KEY-1, PROJECT-KEY-2, PROJECT-KEY-3) - restart required",
"default": ""
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "issuesExplorer",
"title": "Jira",
"icon": "images/icons/jira-explorer-icon.svg"
}
]
},
"views": {
"issuesExplorer": [
{
"id": "issuesExplorer",
"name": "EXPLORER"
}
]
},
"commands": [
{
"command": "jira-plugin.setupCredentialsCommand",
"title": "Setup credentials",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeExplorerGroupBy",
"title": "Change explorer 'Group By' field",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.defaultIssuesCommand",
"title": "0 - Default JQL Search",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.allIssuesCommand",
"title": "1 - All issues",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.currentSprintCommand",
"title": "2 - Current sprint issues",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issueByIdCommand",
"title": "3 - Issue by id",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesByStatusCommand",
"title": "4 - Issues filtered by status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesByStatusAssigneeCommand",
"title": "5 - Issues filtered by status and assignee",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesBySummaryCommand",
"title": "6 - Issues filtered by summary",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.myIssuesByStatusCommand",
"title": "7 - My issues filtered by status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.favouritesFilters",
"title": "8 - Favourites filters",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeIssueStatusCommand",
"title": "Change issue status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeIssueAssigneeCommand",
"title": "Change issue assignee",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issueAddCommentCommand",
"title": "Add comment",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.copyJiraSummary",
"title": "Copy Jira Key+Summary",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.checkoutGitBranch",
"title": "Checkout or create git branch",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.refresh",
"title": "Refresh",
"category": "Jira-plugin",
"icon": {
"light": "images/icons/light/refresh.svg",
"dark": "images/icons/dark/refresh.svg"
}
},
{
"command": "jira-plugin.createIssueCommand",
"title": "Create issue",
"category": "Jira-plugin",
"icon": {
"light": "images/icons/light/plus_nav.png",
"dark": "images/icons/dark/plus_nav.png"
}
},
{
"command": "jira-plugin.insertWorkingIssueComment",
"title": "Insert Working Issue Key+Summary comment",
"category": "Jira-plugin"
}
],
"menus": {
"view/title": [
{
"command": "jira-plugin.changeExplorerGroupBy",
"when": "view == issuesExplorer",
"group": "group_by"
},
{
"command": "jira-plugin.defaultIssuesCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.allIssuesCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.currentSprintCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issueByIdCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesByStatusCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesByStatusAssigneeCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesBySummaryCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.myIssuesByStatusCommand",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.favouritesFilters",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.refresh",
"when": "view == issuesExplorer",
"group": "navigation"
},
{
"command": "jira-plugin.createIssueCommand",
"when": "view == issuesExplorer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "jira-plugin.changeIssueStatusCommand",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.issueAddCommentCommand",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.changeIssueAssigneeCommand",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.copyJiraSummary",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.checkoutGitBranch",
"group": "2_git",
"when": "view == issuesExplorer && viewItem == IssueItem && gitEnabled == 1"
}
]
}
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.5",
"husky": "^1.3.1",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"tslint": "^5.13.0",
"typescript": "^3.3.3333",
"vscode": "^1.1.30"
},
"dependencies": {
"jira-connector": "^2.10.0"
}
}