-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (87 loc) · 2.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "autoend",
"displayName": "Autoend",
"description": "Automatically inserts / moves semicolon to the end of the line and moves you to next line.",
"version": "1.1.4",
"license":"GPL-2.0",
"publisher": "thousandtyone",
"engines": {
"vscode": "^1.5.0"
},
"icon": "images/icon.png",
"homepage": "https://github.com/thousandtyone/autoend",
"repository": {
"type": "git",
"url": "https://github.com/thousandtyone/autoend"
},
"bugs": {
"url": "https://github.com/thousandtyone/autoend/issues"
},
"keywords": [
"semicolon",
"semi colon",
"productivity",
"insert semicolon faster",
"automatically insert semi colon"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.autoend",
"onCommand:extension.colon.autoend"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.autoend",
"title": "Autoend with Semi Colon"
},
{
"command": "extension.colon.autoen",
"title": "Autoend with Colon"
}
],
"keybindings":[
{
"command": "extension.autoend",
"key": ";",
"when": "editorTextFocus"
},
{
"command": "extension.colon.autoend",
"key" : "alt+shift+;",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "ThousandtyOne Autoend",
"properties": {
"autoend.autoInsertNewline":{
"type":"boolean",
"default":true,
"description": "Automatically inserts newlines after moving semicolon to the end of the line"
},
"autoend.autoendWithColon":{
"type":"boolean",
"default":false,
"description": "Automatically moves colon key to the end of the line instead of semi-colon (works better for languages like python)"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}