-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.54 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "divider",
"displayName": "Section Divider",
"description": "Inserts horizontal section dividers using language comments.",
"publisher": "dinhani",
"version": "2.4.0",
"license": "MIT",
"repository": "https://github.com/dinhani/vscode-section-divider",
"bugs": "https://github.com/dinhani/vscode-section-divider/issues",
"icon": "images/vscode-divider-icon.png",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onCommand:divider.addDividerLevel1",
"onCommand:divider.addDividerLevel2"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "divider.addDividerLevel1",
"title": "Divider: Add H1 Divider"
},
{
"command": "divider.addDividerLevel2",
"title": "Divider: Add H2 Divider"
},
{
"command": "divider.addDividerLevel1WithOneLine",
"title": "Divider: Add H1 Divider - One Line"
},
{
"command": "divider.addDividerLevel2WithOneLine",
"title": "Divider: Add H2 Divider - One Line"
}
],
"keybindings": [
{
"command": "divider.addDividerLevel1",
"key": "alt+d",
"when": "editorTextFocus"
},
{
"command": "divider.addDividerLevel2",
"key": "alt+ctrl+d",
"when": "editorTextFocus"
}
],
"configuration": {
"type": "object",
"title": "Section Divider extension",
"properties": {
"divider.text.level1": {
"type": "string",
"default": "=",
"description": "Text that will be used to fill the level 1 (H1) section divider lines."
},
"divider.text.level2": {
"type": "string",
"default": "-",
"description": "Text that will be used to fill the level 2 (H2) section divider lines."
},
"divider.endColumn": {
"type": "number",
"default": 80,
"description": "Last character column the section divider will reach."
},
"divider.lines": {
"type": "number",
"default": 3,
"description": "Number of lines the section divider will have."
},
"divider.overrides": {
"type": "object",
"default": {},
"description": "Overrides language default comment characters with custom characters."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"lint": " ./node_modules/tslint/bin/tslint --project ."
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"mocha": "^5.2.0",
"tslint": "^5.12.1",
"tslint-microsoft-contrib": "^6.0.0",
"typescript": "3.2.4",
"vscode": "^1.1.37"
},
"dependencies": {
"@vscode/vsce": "^2.21.0",
"global": "^4.4.0"
}
}