-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
249 lines (249 loc) · 6.18 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
{
"name": "tortoise-svn",
"displayName": "TortoiseSVN",
"description": "tortoise-svn is a simple extension for VSCode to use TortoiseSVN.",
"version": "0.1.1",
"publisher": "fantasytyx",
"author": {
"name": "TangYaxin",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/fantacytyx",
"repository": {
"type": "git",
"url": "https://github.com/fantacytyx/vscode-tortoise-svn"
},
"bugs": {
"url": "https://github.com/fantacytyx/vscode-tortoise-svn/issues"
},
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "workspace tortoise-svn update",
"title": "Workspace: SVN Update"
},
{
"command": "workspace tortoise-svn commit",
"title": "Workspace: SVN Commit"
},
{
"command": "workspace tortoise-svn log",
"title": "Workspace: SVN Log"
},
{
"command": "workspace tortoise-svn revert",
"title": "Workspace: SVN Revert"
},
{
"command": "workspace tortoise-svn cleanup",
"title": "Workspace: SVN Cleanup"
},
{
"command": "workspace tortoise-svn add",
"title": "Workspace: SVN Add"
},
{
"command": "workspace tortoise-svn diff",
"title": "Workspace: SVN Diff"
},
{
"command": "workspace tortoise-svn lock",
"title": "Workspace: SVN Lock"
},
{
"command": "workspace tortoise-svn unlock",
"title": "Workspace: SVN Unlock"
},
{
"command": "workspace tortoise-svn merge",
"title": "Workspace: SVN Merge"
},
{
"command": "file tortoise-svn update",
"title": "File: SVN Update"
},
{
"command": "file tortoise-svn commit",
"title": "File: SVN Commit"
},
{
"command": "file tortoise-svn log",
"title": "File: SVN Log"
},
{
"command": "file tortoise-svn revert",
"title": "File: SVN Revert"
},
{
"command": "file tortoise-svn cleanup",
"title": "File: SVN Cleanup"
},
{
"command": "file tortoise-svn add",
"title": "File: SVN Add"
},
{
"command": "file tortoise-svn blame",
"title": "File: SVN Blame"
},
{
"command": "file tortoise-svn diff",
"title": "File: SVN Diff"
},
{
"command": "file tortoise-svn lock",
"title": "File: SVN Lock"
},
{
"command": "file tortoise-svn unlock",
"title": "File: SVN Unlock"
},
{
"command": "tortoise-svn ...",
"title": "SVN ... (Select Action)"
},
{
"command": "tortoise-svn ...(select path)",
"title": "SVN ... (Select Path)"
}
],
"menus": {
"explorer/context": [
{
"command": "workspace tortoise-svn update",
"group": "tortoise-svn"
},
{
"command": "workspace tortoise-svn commit",
"group": "tortoise-svn"
},
{
"command": "tortoise-svn ...",
"group": "tortoise-svn"
},
{
"command": "tortoise-svn ...(select path)",
"group": "tortoise-svn"
}
],
"editor/context": [
{
"command": "workspace tortoise-svn update",
"group": "tortoise-svn"
},
{
"command": "workspace tortoise-svn commit",
"group": "tortoise-svn"
},
{
"command": "tortoise-svn ...",
"group": "tortoise-svn"
},
{
"command": "tortoise-svn ...(select path)",
"group": "tortoise-svn"
}
]
},
"configuration": {
"type": "object",
"title": "tortoise-svn configuration",
"properties": {
"TortoiseSVN.autoCloseUpdateDialog": {
"type": "boolean",
"default": false,
"description": "Auto close dialog when no errors, conflicts and merges."
},
"TortoiseSVN.tortoiseSVNProcExePath": {
"type": "string",
"default": "",
"description": "Specify the TortoiseProc.exe path when auto detect path fail. Notice: must replace \\ to \\\\"
},
"TortoiseSVN.showPath.exclude": {
"type": "array",
"default": [
"**/{node_modules,bower_components}/**"
],
"description": "Setting glob pattern to exclude files and folders"
}
}
},
"keybindings": [
{
"command": "workspace tortoise-svn add",
"key": "alt+s a"
},
{
"command": "workspace tortoise-svn update",
"key": "alt+s u"
},
{
"command": "workspace tortoise-svn commit",
"key": "alt+s c"
},
{
"command": "workspace tortoise-svn log",
"key": "alt+s l"
},
{
"command": "workspace tortoise-svn revert",
"key": "alt+s r"
},
{
"command": "workspace tortoise-svn diff",
"key": "alt+s d"
},
{
"command": "file tortoise-svn add",
"key": "alt+s a",
"when": "editorFocus"
},
{
"command": "file tortoise-svn log",
"key": "alt+s l",
"when": "editorFocus"
},
{
"command": "file tortoise-svn revert",
"key": "alt+s r",
"when": "editorFocus"
},
{
"command": "file tortoise-svn diff",
"key": "alt+s d",
"when": "editorFocus"
},
{
"command": "tortoise-svn ...",
"key": "alt+s s"
},
{
"command": "tortoise-svn ...(select path)",
"key": "alt+s m"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"dependencies": {
"glob": "^7.0.6"
}
}