-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "toggle-upper-case",
"displayName": "toggle-upper-case",
"description": "Toggle UPPER_CASE and snake_case",
"version": "0.0.1",
"publisher": "eprincev-egor",
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.toggleUpperCase"
],
"main": "./lib/extension",
"contributes": {
"commands": [
{
"command": "extension.toggleUpperCase",
"title": "Toggle UPPER_snake"
}
],
"keybindings": {
"key": "Ctrl+U",
"command": "extension.toggleUpperCase",
"when": "editorTextFocus"
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"repository": {
"type": "git",
"url": "https://github.com/eprincev-egor/vscode-toggle-upper-case"
},
"devDependencies": {
"vscode": "^1.1.6",
"eslint": "^4.11.0"
}
}