-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 4.19 KB
/
Copy pathpackage.json
File metadata and controls
157 lines (157 loc) · 4.19 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
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
{
"name": "jira-issues",
"displayName": "Jira Issues",
"description": "Create a custom filter to view Jira issues in the Explorer viewlet",
"version": "1.2.2",
"author": "Crhistian Ramirez",
"publisher": "crhistianr",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"icon": "assets/icons/jira-logo.png",
"galleryBanner": {
"theme": "light",
"color": "#eff1f3"
},
"homepage": "https://github.com/crhistianramirez/jiraIssues/blob/master/README.md",
"bugs": {
"url": "https://github.com/crhistianramirez/jiraIssues/issues",
"email": "crhistian26@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/crhistianramirez/jiraIssues"
},
"license": "MIT",
"keywords": [
"jira",
"issues",
"bugs",
"list",
"tracking"
],
"activationEvents": [
"onView:jiraIssues"
],
"main": "./out/src/extension",
"contributes": {
"views": {
"explorer": [
{
"id": "jiraIssues",
"name": "Jira Issues"
}
]
},
"commands": [
{
"command": "jiraIssues.refresh",
"title": "Refresh",
"icon": {
"light": "assets/icons/light/refresh.svg",
"dark": "assets/icons/dark/refresh.svg"
}
},
{
"command": "jiraIssues.openIssue",
"title": "Open Issue"
},
{
"command": "jiraIssues.copyJiraIssue",
"title": "Copy Issue Number"
}
],
"menus": {
"view/title": [
{
"command": "jiraIssues.refresh",
"when": "view == jiraIssues",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "jiraIssues.openIssue",
"when": "view == jiraIssues && viewItem == issue",
"group": "1_navigation"
},
{
"command": "jiraIssues.copyJiraIssue",
"when": "view == jiraIssues && viewItem == issue",
"group": "9_cutcopypaste"
}
]
},
"configuration": {
"type": "object",
"title": "Jira configuration",
"properties": {
"jira.baseUrl": {
"type": [
"string"
],
"default": "",
"description": "Your JIRA base URL e.g. https://your_jira_base_url.com or http://your_jira_base_url.com"
},
"jira.username": {
"type": [
"string"
],
"default": "",
"description": "The username for logging in to Jira"
},
"jira.apiToken": {
"type": [
"string"
],
"default": "",
"description": "The user's api token for logging in to Jira (generated from user's account). More info on generating your own token here: https://confluence.atlassian.com/cloud/api-tokens-938839638.html"
},
"jira.port": {
"type": [
"string",
"null"
],
"default": "443",
"description": "Port number of baseUrl, default is 443 (optional)"
},
"jira.password": {
"type": [
"string"
],
"default": "",
"description": "[DEPRECATED] Jira deprecated basic auth via password, this field will still 'work' but expects an apiToken"
},
"jira.jqlExpression": {
"type": [
"string",
"null"
],
"default": "assignee = currentUser() AND resolution = EMPTY",
"description": "Provide your custom JQL (Jira Query Language) expression to filter issues. Defaults to returning all issues assigned to you that have not yet been resolved. More info on JQL here: https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-764478330.html"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/node": "^16.7.4",
"@types/open": "0.0.29",
"@types/vscode": "^1.59.0",
"tslint": "^5.4.3",
"typescript": "^4.4.2"
},
"dependencies": {
"copy-paste": "^1.3.0",
"jira-client": "^6.4.0",
"open": "0.0.5",
"request": "^2.88.0"
}
}