This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
158 lines (158 loc) · 4.22 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
{
"name": "azure-boards",
"displayName": "Azure Boards",
"description": "",
"version": "0.1.0",
"license": "MIT",
"publisher": "microsoft",
"repository": {
"url": "https://github.com/microsoft/azure-boards-vscode"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:work-items",
"onCommand:azure-boards.add-organization",
"onCommand:azure-boards.remove-organization",
"onCommand:azure-boards.select-organization"
],
"extensionDependencies": [
"vscode.git"
],
"main": "./build/extension/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "azure-boards-container",
"title": "Azure Boards",
"icon": "media/azure-boards-logo.svg"
}
]
},
"views": {
"azure-boards-container": [
{
"id": "work-items",
"name": "My work items"
}
]
},
"commands": [
{
"command": "azure-boards.refresh",
"title": "Refresh",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
},
{
"command": "azure-boards.open-work-item",
"title": "Open work item in Azure Boards",
"icon": {
"light": "resources/light/globe.svg",
"dark": "resources/dark/globe.svg"
}
},
{
"command": "azure-boards.mention-work-item",
"title": "Mention work item in commit message",
"icon": {
"light": "resources/light/mention.svg",
"dark": "resources/dark/mention.svg"
}
},
{
"command": "azure-boards.add-organization",
"title": "Azure Boards: Connect to an organization"
},
{
"command": "azure-boards.remove-organization",
"title": "Azure Boards: Remove a connected organization"
},
{
"command": "azure-boards.select-organization",
"title": "Azure Boards: Select preferred organization"
}
],
"menus": {
"view/title": [
{
"command": "azure-boards.refresh",
"when": "view == work-items",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "azure-boards.open-work-item",
"when": "view == work-items && viewItem == work-item",
"group": "inline"
},
{
"command": "azure-boards.mention-work-item",
"when": "view == work-items && viewItem == work-item && config.git.enabled && gitOpenRepositoryCount != 0",
"group": "inline@+1"
}
]
},
"configuration": {
"type": "object",
"title": "Azure Boards",
"properties": {
"azure-boards.current-organization": {
"title": "Current organization",
"description": "Current Azure Boards organization",
"scope": "window"
},
"azure-boards.current-project": {
"title": "Current project",
"description": "Current Azure Boards projects",
"scope": "window"
},
"azure-boards.organizations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"uri": {
"type": "string",
"default": ""
}
}
},
"description": "Azure Boards organizations to connect to",
"scope": "application"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"package": "npm version patch --no-git-tag-version && vsce package"
},
"devDependencies": {
"@types/keytar": "^4.4.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "5.15.0",
"typescript": "3.3.4000",
"vsce": "^1.62.0",
"vscode": "1.1.33"
},
"dependencies": {
"applicationinsights": "^1.3.1",
"azure-devops-node-api": "^7.0.0",
"keytar": "^4.6.0",
"vsts-device-flow-auth": "^1.136.0"
}
}