-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
295 lines (295 loc) · 7.1 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{
"name": "githooks",
"displayName": "GitHooks -- Simple VS Code UI for git hooks.",
"description": "Integrating Git Hooks to vscode UI; Can View, Edit and Run your local Git Hooks which can prevent your git repository from potential issues and enforce code quality.",
"version": "2.1.1",
"license": "SEE LICENSE IN LICENSE",
"publisher": "lakshmikanthayyadevara",
"main": "./out/extension.js",
"icon": "assets/GitHooksIcon.png",
"engines": {
"vscode": "^1.72.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Lakshmikanth2001/GitHooks"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Lakshmikanth2001/GitHooks/issues"
},
"author": {
"name": "Lakshmikanth Ayyadevara",
"email": "[email protected]"
},
"categories": [
"Other",
"SCM Providers"
],
"activationEvents": [
"workspaceContains:.git"
],
"keywords": [
"git",
"Git",
"githooks",
"gitHooks",
"git_hooks",
"git hooks",
"git hook",
"Git Hooks",
"pre-commit",
"pre commit",
"pre-push",
"pre push",
"git guard"
],
"galleryBanner": {
"color": "#1B6B93",
"theme": "dark"
},
"contributes": {
"menus": {
"commandPalette": [
{
"command": "git-hooks.openHook",
"when": "false"
},
{
"command": "git-hooks.runHook",
"when": "false"
},
{
"command": "git-hooks.toggleHook",
"when": "false"
},
{
"command": "git-hooks.hookDescription",
"when": "false"
}
],
"view/title": [
{
"command": "git-hooks.reloadHooks",
"when": "view == git_hooks_view||view == git_hooks_scm",
"group": "navigation"
},
{
"command": "git-hooks.toggleView",
"when": "view == git_hooks_view||view == git_hooks_scm",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "git-hooks.configureHooksDirectory",
"when": "viewItem == 'root' && view == git_hooks_view",
"group": "inline"
},
{
"command": "git-hooks.openHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm",
"group": "inline"
},
{
"command": "git-hooks.runHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm",
"group": "inline"
},
{
"command": "git-hooks.toggleHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm",
"group": "inline"
},
{
"command": "git-hooks.openHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm"
},
{
"command": "git-hooks.runHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm"
},
{
"command": "git-hooks.toggleHook",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm"
},
{
"command": "git-hooks.hookDescription",
"when": "viewItem == 'hook' && view == git_hooks_view||view == git_hooks_scm"
}
],
"editor/title": [
{
"when": "resourceDirname in GitHooks.hooksDirectoryList",
"command": "git-hooks.runCurrentHook",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "git_hooks",
"title": "Git Hooks",
"icon": "assets/GitHooksLogo.svg"
}
]
},
"views": {
"git_hooks": [
{
"id": "git_hooks_view",
"name": "Git Hooks",
"when": "workSpaceHasGit && GitHooks.viewContainerDisplay",
"visibility": "visible"
}
],
"scm": [
{
"id": "git_hooks_scm",
"name": "Git Hooks",
"when": "workSpaceHasGit && !GitHooks.viewContainerDisplay",
"visibility": "visible"
}
]
},
"commands": [
{
"command": "git-hooks.configureHooksDirectory",
"title": "Configure Hooks Directory",
"category": "GitHooks",
"icon": "$(gear)"
},
{
"command": "git-hooks.openHook",
"title": "Open Hook",
"category": "GitHooks",
"icon": "$(edit)"
},
{
"command": "git-hooks.runCurrentHook",
"title": "Run Current Hook",
"category": "GitHooks",
"icon": "$(debug-start)"
},
{
"command": "git-hooks.runHook",
"title": "Run Hook",
"category": "GitHooks",
"icon": "$(debug-start)"
},
{
"command": "git-hooks.toggleHook",
"title": "Toggle Hook",
"category": "GitHooks",
"icon": "$(pin)"
},
{
"command": "git-hooks.reloadHooks",
"title": "Reload Hooks",
"category": "GitHooks",
"icon": "$(timeline-refresh)"
},
{
"command": "git-hooks.hookDescription",
"title": "Hook Description",
"category": "GitHooks"
},
{
"command": "git-hooks.toggleView",
"title": "Change Extension View",
"category": "GitHooks",
"icon": "$(source-control)"
}
],
"configuration": {
"type": "object",
"title": "GitHook Settings",
"properties": {
"GitHooks.viewContainerDisplay": {
"type": "boolean",
"default": true,
"description": "Display GitHook icon in activity bar"
},
"GitHooks.hooksDirectory": {
"type": "string",
"scope": "resource",
"default": "",
"description": "Directories to search for git hooks (git config core.hooksPath only for single folder opened not for workspaces) "
},
"GitHooks.predefinedHooks": {
"type": "array",
"default": [
"applypatch-msg",
"commit-msg",
"fsmonitor-watchman",
"post-update",
"pre-applypatch",
"pre-commit",
"pre-merge-commit",
"pre-push",
"pre-rebase",
"pre-receive",
"prepare-commit-msg",
"push-to-checkout",
"update"
],
"description": "Predefined hooks to display"
},
"GitHooks.languageBinaries": {
"type": "array",
"default": [
"python",
"python3",
"java",
"node",
"cpp",
"bash"
],
"description": "Installed language binaries to view shell path and shebang suggetions"
},
"GitHooks.logLevel": {
"type": "string",
"enum": [
"error",
"warn",
"info",
"debug"
],
"default": "info",
"description": "configuration to set log level in `GitHooks` output channel (used for extension debugging)"
}
}
}
},
"scripts": {
"analizeBundle": "webpack --profile --json > stats.json",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run package",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.63",
"@types/vscode": "^1.72.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.0.0"
}
}