-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
176 lines (176 loc) · 4.91 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
{
"name": "vscode-vsts",
"displayName": "Visual Studio Team Services extension",
"description": "Visual Studio Team Services extension for Visual Studio Code.",
"keywords": [
"VSO",
"Visual Studio Online",
"VSTS",
"Visual Studio Team Services"
],
"icon": "assets/vsteam.png",
"version": "0.0.1",
"publisher": "lszomoru",
"license": "MIT",
"bugs": {
"url": "https://github.com/lszomoru/vscode-vsts/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/lszomoru/vscode-vsts/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/lszomoru/vscode-vsts.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.openVSTSSupportSite",
"title": "Open Visual Studio Team Services support website"
},
{
"command": "extension.openInVSTS",
"title": "Open in Visual Studio Team Services"
},
{
"command": "extension.annotateInVSTS",
"title": "Annotate in Visual Studio Team Services"
},
{
"command": "extension.viewHistoryInVSTS",
"title": "View history in Visual Studio Team Services"
},
{
"command": "extension.viewPullRequestInVSTS",
"title": "View pull requests in Visual Studio Team Services"
},
{
"command": "extension.createVSTSWorkItem",
"title": "Create Visual Studio Team Services work item"
},
{
"command": "extension.createVSTSTaskFromSelection",
"title": "Create Visual Studio Team Services task from selection"
},
{
"command": "extension.queryVSTSWorkItems",
"title": "Query Visual Studio Team Services work items"
},
{
"command": "extension.openVSTSWorkItemsPortal",
"title": "Open Visual Studio Team Services work items website"
},
{
"command": "extension.openVSTSBuildDefinition",
"title": "Open Visual Studio Team Services build definition"
},
{
"command": "extension.openVSTSBuild",
"title": "Open Visual Studio Team Services build"
}
],
"keybindings": [
{
"command": "extension.openVSTSSupportSite",
"key": "ctrl+t ctrl+s",
"mac": "cmd+t cmd+s"
},
{
"command": "extension.openInVSTS",
"key": "ctrl+t ctrl+o",
"mac": "cmd+t cmd+o"
},
{
"command": "extension.annotateInVSTS",
"key": "ctrl+t ctrl+a",
"mac": "cmd+t cmd+a"
},
{
"command": "extension.viewHistoryInVSTS",
"key": "ctrl+t ctrl+h",
"mac": "cmd+t cmd+h"
},
{
"command": "extension.viewPullRequestInVSTS",
"key": "ctrl+t ctrl+p",
"mac": "cmd+t cmd+p"
},
{
"command": "extension.createVSTSWorkItem",
"key": "ctrl+t ctrl+n",
"mac": "cmd+t cmd+n"
},
{
"command": "extension.createVSTSTaskFromSelection",
"key": "ctrl+t ctrl+t",
"mac": "cmd+t cmd+t"
},
{
"command": "extension.queryVSTSWorkItems",
"key": "ctrl+t ctrl+q",
"mac": "cmd+t cmd+q"
},
{
"command": "extension.openVSTSWorkItemsPortal",
"key": "ctrl+t ctrl+w",
"mac": "cmd+t cmd+w"
}
],
"configuration": {
"type": "object",
"title": "Visual Studio Team Services account settings",
"properties": {
"vsts.account": {
"type": "string",
"default": "",
"description": "Visual Studio Team Services account (Ex: contoso.visualstudio.com)."
},
"vsts.pat": {
"type": "string",
"default": "",
"description": "Visual Studio Team Services personal access token."
},
"vsts.teamProject": {
"type": "string",
"default": "",
"description": "Visual Studio Team Services team project name."
},
"vsts.workItemTypes": {
"type": "array",
"default": [],
"description": "Visual Studio Team Services work item types. (Ex: [\"Bug\", \"Task\"])"
},
"vsts.supportWebsiteAddress": {
"type": "string",
"default": "https://www.visualstudio.com/support/support-overview-vs",
"description": "Visual Studio Team Services support website address"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"dependencies": {
"git-repo-info": "^1.1.2",
"open": "7.0.3",
"parse-git-config": "^0.3.1",
"rest": "^1.3.1",
"urlencode": "^1.1.0",
"vso-node-api": "^0.6.1"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}