-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "vscode-input-sequence",
"displayName": "vscode-input-sequence",
"description": "sequential-number in vscode",
"version": "0.2.0",
"publisher": "tomoki1207",
"repository": {
"type": "git",
"url": "https://github.com/tomoki1207/vscode-input-sequence.git"
},
"bugs": {
"url": "https://github.com/tomoki1207/vscode-input-sequence/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:insertSequentialNumbers"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "insertSequentialNumbers",
"title": "Insert Sequential number"
}
],
"configuration": {
"title": "Input-Sequence configuration",
"properties": {
"sequence.replaceSelection": {
"type": "boolean",
"default": false
}
}
},
"keybindings": [
{
"command": "insertSequentialNumbers",
"key": "ctrl+alt+0",
"mac": "cmd+alt+0",
"when": "editorTextFocus"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"package": "vsce package"
},
"devDependencies": {
"eslint": "^3.6.0",
"eslint-plugin-node": "^2.1.1",
"typescript": "^2.0.3",
"vm": "^0.1.0",
"vsce": "^1.14.0",
"vscode": "^0.11.0"
}
}