This repository has been archived by the owner on Aug 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
140 lines (140 loc) · 4.18 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
{
"name": "docthis",
"displayName": "Document This",
"description": "Automatically generates detailed JSDoc comments in TypeScript and JavaScript files.",
"version": "0.8.2",
"publisher": "joelday",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#252627",
"theme": "dark"
},
"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": true,
"description": "Put @returns in place of @returns"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"lint": "node ./node_modules/tslint/bin/tslint src/**/*.ts",
"compile": "npm run lint && tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.3.0",
"tslint": "^5.10.0",
"vscode": "^1.1.29"
},
"dependencies": {
"dayjs": "^1.8.6",
"typescript": "^2.9.1"
},
"bugs": {
"url": "https://github.com/joelday/vscode-docthis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/joelday/vscode-docthis"
}
}