-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
460 lines (460 loc) · 14.8 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
{
"name": "jira-plugin",
"displayName": "Jira Plugin",
"description": "Manage your on-premises/cloud Jira in vscode",
"version": "0.22.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 --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.additionalStatuses": {
"type": "string",
"description": "Additional custom statuses, used for manage some Jira wrong behavior",
"default": ""
},
"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.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.enableWorkingIssue": {
"type": "boolean",
"description": "Enable working issue functionality in status bar",
"default": "true"
},
"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.issueListAutoRefreshInterval": {
"type": "integer",
"description": "Refresh explorer every x minutes (n.b: setting to 0 disables auto-refresh)",
"default": 0
},
"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.projectKeyMapping": {
"type": "array",
"items": {
"type": "string"
},
"description": "Setting for map projects key for git integration (e.g. CUSTOMKEY=JIRAKEY)",
"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)",
"default": ""
},
"jira-plugin.projectsToShow": {
"type": "string",
"description": "Here you can define which projects you want to show (e.g. PROJECT-KEY-1, PROJECT-KEY-2, PROJECT-KEY-3)",
"default": ""
},
"jira-plugin.requestsTimeout": {
"type": "integer",
"description": "Jira requests timeout (expressed in minutes)",
"default": 1
},
"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.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.username": {
"type": "string",
"description": "Your Jira username or full email for OAuth",
"default": ""
},
"jira-plugin.workingIssueFilter": {
"type": "string",
"description": "Choose which internal filter constant is used for 'Select Working Issue' filter. Note: Requires reload on change",
"enum": [
"WORKING_ISSUES",
"ALL"
],
"default": "WORKING_ISSUES"
},
"jira-plugin.workingIssueAssignees": {
"type": "string",
"description": "Assignees used for extract working issue list (e.g. robert.smith, michael.jones) (n.b: CURRENT_USER is the placeholder for the current user)",
"default": "CURRENT_USER"
},
"jira-plugin.workingIssueChangeStatusAfterSelection": {
"type": "boolean",
"description": "Change working issue status after selection",
"default": false
},
"jira-plugin.workingIssueShowTimer": {
"type": "boolean",
"description": "Show/Hide working issue timer in status bar",
"default": true
},
"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.workingProject": {
"type": "string",
"description": "Jira working project",
"default": ""
},
"jira-plugin.worklogMinimumTrackingTime": {
"type": "integer",
"description": "Minimum tracking time for show the Worklog modal and create Jira worklog (expressed in minutes)",
"default": 0
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "issuesExplorer",
"title": "Jira",
"icon": "images/icons/jira-explorer-icon.svg"
}
]
},
"views": {
"issuesExplorer": [
{
"id": "issuesExplorer",
"name": "EXPLORER"
}
]
},
"commands": [
{
"command": "jira-plugin.setupCredentials",
"title": "Setup credentials",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeExplorerGroupBy",
"title": "Change explorer 'Group By' field",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.defaultIssues",
"title": "0 - Default JQL Search",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.allIssues",
"title": "1 - All issues",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.currentSprint",
"title": "2 - Current sprint issues",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issueById",
"title": "3 - Issue by id",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesByStatus",
"title": "4 - Issues filtered by status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesByStatusAssignee",
"title": "5 - Issues filtered by status and assignee",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issuesBySummary",
"title": "6 - Issues filtered by summary",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.myIssuesByStatus",
"title": "7 - My issues filtered by status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.favouritesFilters",
"title": "8 - Favourites filters",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.setWorkingProject",
"title": "Set Working Project",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.setWorkingIssue",
"title": "Set Working Issue",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.stopWorkingIssue",
"title": "Stop Working On Issue",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeIssueStatus",
"title": "Change issue status",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.changeIssueAssignee",
"title": "Change issue assignee",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issueAddComment",
"title": "Add comment",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.issueAddInternalComment",
"title": "Add internal comment",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.copyIssueKeySummary",
"title": "Copy Jira issue Key+Summary",
"category": "Jira-plugin"
},
{
"command": "jira-plugin.copyIssueRemoteUrl",
"title": "Copy Jira issue remote url",
"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.createIssue",
"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.defaultIssues",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.allIssues",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.currentSprint",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issueById",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesByStatus",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesByStatusAssignee",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.issuesBySummary",
"when": "view == issuesExplorer",
"group": "jql"
},
{
"command": "jira-plugin.myIssuesByStatus",
"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.createIssue",
"when": "view == issuesExplorer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "jira-plugin.changeIssueStatus",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.issueAddComment",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.issueAddInternalComment",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.changeIssueAssignee",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.copyIssueKeySummary",
"group": "1_issue",
"when": "view == issuesExplorer && viewItem == IssueItem"
},
{
"command": "jira-plugin.copyIssueRemoteUrl",
"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": "^8.0.3",
"@types/node": "^14.11.2",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"vscode": "^1.1.37"
},
"dependencies": {
"jira-connector": "^3.1.0"
}
}