-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "trailing-semicolon",
"displayName": "Trailing Semicolon",
"description": "Provides the command to append semicolon to the end of current line.",
"version": "1.0.2",
"publisher": "naumovs",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.trailing-semicolon"
],
"scripts": {
"vscode:prepublish": "node ./node_modules/webpack/bin/webpack.js",
"compile": "node ./node_modules/webpack/bin/webpack.js -w"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/naumovs/vscode-ext-trailing-semicolon/issues"
},
"homepage": "https://github.com/naumovs/vscode-ext-trailing-semicolon",
"repository": {
"type": "git",
"url": "https://github.com/naumovs/vscode-ext-trailing-semicolon.git"
},
"main": "./dist/extension",
"icon": "images/semicolon.png",
"contributes": {
"commands": [
{
"command": "extension.trailing-semicolon",
"title": "Trailing Semicolon"
}
],
"keybindings": [{
"key": "cmd+;",
"when": "editorTextFocus",
"command": "extension.trailing-semicolon"
}]
},
"devDependencies": {
"vscode": "0.10.x",
"webpack": "^1.12.12"
}
}