-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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
{
"name": "expand-selection-to-scope",
"displayName": "Expand Selection To Scope",
"description": "This extension introduces a command that incrementally expands the selection to the nearest outer scope (delimited by bracket pairs)",
"version": "0.2.0",
"publisher": "vittorioromeo",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:expand-selection-to-scope.expand"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "expand-selection-to-scope.expand",
"title": "Expand Selection To Scope"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"repository": "https://github.com/SuperV1234/vscode-expand-selection-to-scope",
"license": "AFL-3.0"
}