-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.26 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "vscode-toggle-column-selection",
"version": "1.0.6",
"displayName": "Toggle Column Selection",
"icon": "images/icon.png",
"description": "Turn a selection into a column selection à la TextMate",
"publisher": "erikphansen",
"author": {
"name": "Erik P. Hansen"
},
"maintainers": [
"Erik P. Hansen <eph@erikphansen.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/erikphansen/vscode-toggle-column-selection"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:toggleColumnSelection.toggle"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "toggleColumnSelection.toggle",
"title": "Toggle Column Selection"
}
],
"keybindings": [
{
"command": "toggleColumnSelection.toggle",
"key": "shift+alt+i",
"when": "editorTextFocus"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
}
}