-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.55 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
{
"name": "jira-search",
"author": {
"name": "Jesse Chrestler",
"email": "JesseChrestler@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/JesseChrestler/jira-search-vscode-extension"
},
"bugs": {
"url": "https://github.com/JesseChrestler/jira-search-vscode-extension/issues"
},
"displayName": "jira-search",
"description": "Allows you to view your jira issues in visual studio code.",
"version": "0.3.0",
"publisher": "xceleration",
"engines": {
"vscode": "^1.15.0"
},
"categories": ["Other"],
"activationEvents": ["onCommand:extension.jiraSearch", "onCommand:extension.jiraSearchByIssueKey"],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.jiraSearch",
"title": "Jira Search My Issues"
},
{
"command": "extension.jiraSearchByIssueKey",
"title": "Jira View issue"
}
],
"configuration": {
"type": "object",
"title": "jira-search configuration",
"properties": {
"jiraSearch.url": {
"type": "string",
"default": "https://subdomain.atlassian.net",
"description": "Base URL for your jira site - Required"
},
"jiraSearch.username": {
"type": "string",
"default": "",
"description": "Username for your jira account (typically not the email address) - Required"
},
"jiraSearch.password": {
"type": "string",
"default": "",
"description": "Password for your jira account - Required"
},
"jiraSearch.labelFormat": {
"type": "string",
"default": "{fields.status.name} - [{fields.issuetype.name}][{fields.priority.name}] {key}",
"description": "The first part of an issue listing"
},
"jiraSearch.descriptionFormat": {
"type": "string",
"default": "{fields.summary}",
"description": "Second part. Smaller text next to the label. Issue summary by default."
},
"jiraSearch.detailFormat": {
"type": "string",
"default": "{fields.description}",
"description": "Appears below the label and description. Default is the issue description."
},
"jiraSearch.clipboardFormat": {
"type": "string",
"default": "{key} - {fields.summary} - {fields.description}",
"description": "Format of data copied to clipboard"
},
"jiraSearch.jql": {
"type": "string",
"default": "assignee={username} and status!=Done order by created",
"description": "JQL used to fetch issues. Only the {username} token is currently supported."
},
"jiraSearch.updateInterval": {
"type": "number",
"default": 5,
"description": "How often to update local issue cache (in minutes)"
},
"jiraSearch.enableWorklogs": {
"type": "boolean",
"default": false,
"description": "Experimental: View and add worklogs. Does not work with third party plugins such as Tempo."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"copy-paste": "^1.3.0",
"request": "^2.75.0"
}
}