-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "expand-region",
"displayName": "expand-region",
"description": "expand selection , It works similar to ExpandRegion for Emacs and “Structural Selection” (Control-W) in the JetBrains IDE's (i.e. IntelliJ IDEA).",
"version": "0.1.2",
"publisher": "letrieu",
"icon": "icon.png",
"bugs": {
"url": "https://github.com/windwp/vscode-expand-region/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/windwp/vscode-expand-region.git"
},
"homepage": "https://github.com/windwp/vscode-expand-region/blob/master/README.md",
"engines": {
"vscode": "^1.1.5"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:expand_region"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "expand_region",
"title": "Expand Region"
},{
"command":"undo_expand_region",
"title": "Undo Expand Region"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "mocha --ui tdd --recursive \"out/**/*.test.js\"",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"mocha": "^3.5.0",
"typescript": "^2.4.2",
"vscode": "^1.1.5",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}