-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.86 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "hermes-comments",
"displayName": "Hermes-Comments",
"description": "A vs-code Extension to facilitate the creation of complex comments to improve code readability and structure",
"version": "0.0.5",
"publisher": "Makogan",
"repository": {
"type": "git",
"url": "https://github.com/Makogan/Hermes-Comments"
},
"license": "SEE LICENSE IN LICENSE",
"icon": "Assets/icon.png",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:extension.makeCenteredSection",
"onCommand:extension.makeLeftSection",
"onCommand:extension.makeSeparatorLine",
"onCommand:extension.makeSubSection"
],
"main": "./out/extension",
"contributes": {
"keybindings": [
{
"command": "extension.makeCenteredSection",
"key": "alt+shift+p",
"when": "editorTextFocus"
},
{
"command": "extension.makeLeftSection",
"key": "alt+shift+l",
"when": "editorTextFocus"
},
{
"command": "extension.makeSeparatorLine",
"key": "alt+shift+;",
"when": "editorTextFocus"
},
{
"command": "extension.makeSubSection",
"key": "alt+shift+o",
"when": "editorTextFocus"
}
],
"commands": [
{
"command": "extension.makeCenteredSection",
"title": "Make Centered Frame Comment"
},
{
"command": "extension.makeLeftSection",
"title": "Make Left Justified Frame Comment"
},
{
"command": "extension.makeSeparatorLine",
"title": "Make a separator line"
},
{
"command": "extension.makeSubSection",
"title": "Make a subsection comment"
}
],
"configuration": {
"type": "object",
"title": "Hermes Comments settings",
"properties":
{
"hermes-comments.maximum":
{
"type": ["integer"],
"default": 90,
"description": "The level of alignment, how far the titles will extend horizontally"
},
"hermes-comments.frame":
{
"type": ["string"],
"default": "=",
"description": "The character used to decorate the frame"
},
"hermes-comments.fill":
{
"type": ["string"],
"default": " ",
"description": "The character used to fill the empty space in a frame"
},
"hermes-comments.separator":
{
"type": ["string"],
"default": "#",
"description": "The character used for the separator bar"
},
"hermes-comments.title":
{
"type": ["string"],
"default": "+",
"description": "The character used to decorate the author frame"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}