forked from joelday/vscode-docthis
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
203 lines (203 loc) · 6.98 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "docthis",
"displayName": "Document This",
"description": "Automatically generates detailed JSDoc comments in TypeScript and JavaScript files.",
"version": "0.8.2",
"publisher": "oouo-diogo-perdigao",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#252627",
"theme": "dark"
},
"author": {
"name": "Joel Day",
"url": "https://github.com/joelday"
},
"contributors": [
{
"name": "Diogo Passos Perdigão Britto",
"email": "[email protected]",
"url": "https://github.com/oouo-diogo-perdigao"
},
{
"name": "TheOpenDevProject",
"url": "https://github.com/TheOpenDevProject"
},
{
"name": "Ed Bishop",
"url": "https://github.com/mredbishop"
},
{
"name": "Matej Baric",
"url": "https://github.com/mbaric1"
},
{
"name": "Michael Probber",
"url": "https://github.com/mprobber"
},
{
"name": "Nicolas Ramz",
"url": "https://github.com/warpdesign"
},
{
"name": "Waldir Pimenta",
"url": "https://github.com/waldyrious"
},
{
"name": "Vassilis Pitsounis",
"url": "https://github.com/vapits"
},
{
"name": "Zhang Haocong",
"url": "https://github.com/kakera"
},
{
"name": "James Treworgy",
"url": "https://github.com/jamietre"
},
{
"name": "Dominik Schreiber",
"url": "https://github.com/dominikschreiber"
},
{
"name": "cudandres",
"url": "https://github.com/cudandres"
},
{
"name": "AkiraVoid",
"url": "https://github.com/AkiraVoid"
}
],
"license": "MIT",
"licenseUrl": "LICENSE",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other",
"Snippets",
"Programming Languages"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "docthis.documentThis",
"title": "Document This"
},
{
"command": "docthis.traceTypeScriptSyntaxNode",
"title": "Trace TypeScript Syntax Node"
}
],
"menus": {
"editor/context": [
{
"command": "docthis.documentThis"
}
]
},
"keybindings": [
{
"command": "docthis.documentThis",
"key": "ctrl+alt+d ctrl+alt+d"
}
],
"configuration": {
"type": "object",
"title": "Document This configuration",
"properties": {
"docthis.includeTypes": {
"type": "boolean",
"default": true,
"description": "When enabled, type information is added to comment tags."
},
"docthis.includeMemberOfOnClassMembers": {
"type": "boolean",
"default": true,
"description": "When enabled, memberOf information is added to comment tags on class members."
},
"docthis.includeMemberOfOnInterfaceMembers": {
"type": "boolean",
"default": true,
"description": "When enabled, memberOf information is added to comment tags on interface members."
},
"docthis.includeDescriptionTag": {
"type": "boolean",
"default": false,
"description": "When enabled, JSDoc comments for functions and methods will include @description."
},
"docthis.enableHungarianNotationEvaluation": {
"type": "boolean",
"default": false,
"description": "When enabled, hungarian notation will be used as a type hint."
},
"docthis.inferTypesFromNames": {
"type": "boolean",
"default": false,
"description": "When enabled, will use names of params & methods as type hints."
},
"docthis.includeAuthorTag": {
"type": "boolean",
"default": false,
"description": "When enabled, will add the @author tag."
},
"docthis.authorName": {
"type": "string",
"default": "(Set the text for this tag by adding docthis.authorName to your settings file.)",
"description": "When docthis.includeAuthorTag is enabled, will add @author tag with this value."
},
"docthis.includeDateTag": {
"type": "boolean",
"default": false,
"description": "When enabled, will add the @date tag in dd-mm-yyyy"
},
"docthis.dateTagFormat": {
"type": "string",
"default": "dd/mm/yyyy",
"description": "Select date format. Defaults to dd-mm-yyyy"
},
"docthis.inlineOneLiners": {
"type": "boolean",
"default": true,
"description": "When enabled, comments that only have one line, will be displayed in one line instead of three."
},
"docthis.returnsTag": {
"type": "boolean",
"default": false,
"description": "Put @returns in place of @return"
},
"docthis.lineIndents": {
"type": "number",
"default": 1,
"description": "Set the number of spaces before user texts (the texts represent description, explanation, etc and can be edited by users, compare with tags, type names, etc). There will be at least one space between tags with user texts or asterisks even this value is set to 0."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"lint": "tslint src/**/*.ts",
"compile": "npm run lint && tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.26",
"@types/vscode": "^1.22.0",
"tslint": "^5.20.1"
},
"dependencies": {
"dateformat": "^3.0.3",
"typescript": "^2.9.2"
},
"bugs": {
"url": "https://github.com/oouo-diogo-perdigao/vscode-docthis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/oouo-diogo-perdigao/vscode-docthis"
}
}