-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
134 lines (134 loc) · 4.68 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
{
"name": "phpdoc-generator",
"displayName": "PHPDoc Generator",
"description": "PHPDoc Generator is a VSCode extension that generates a documentation block using a keyboard shortcut.",
"license": "MIT",
"author": {
"name": "Ron van der Heijden",
"email": "[email protected]"
},
"version": "1.1.1",
"publisher": "ronvanderheijden",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"php",
"phpdoc",
"phpdoc-generator",
"generator",
"keybindings",
"documentation"
],
"activationEvents": [
"onCommand:phpdoc-generator.generatePHPDoc"
],
"icon": "assets/ronvanderheijden.png",
"main": "./lib/extension",
"contributes": {
"configuration": {
"title": "PHPDoc Generator",
"properties": {
"phpdoc-generator.insertDescription": {
"type": "boolean",
"default": true,
"description": "Inserts a description in a documentation block."
},
"phpdoc-generator.insertIndentAfterParameters" : {
"type": "boolean",
"default": true,
"description": "Inserts the indent after parameters."
},
"phpdoc-generator.returnUndefinedType": {
"type": "string",
"default": "[type]",
"enum": [
"[type]",
"mixed",
"void",
"none"
],
"description": "Specifies the value of a type for @return when it is undefined."
},
"phpdoc-generator.varUndefinedType": {
"type": "string",
"default": "[type]",
"enum": [
"[type]",
"mixed",
"undefined"
],
"description": "Specifies the value of a type for @var when it is undefined."
},
"phpdoc-generator.shortType": {
"type": "boolean",
"default": true,
"description": "Uses short names for types: integer => int, boolean => bool."
},
"phpdoc-generator.comparisonOfShortTypes": {
"type": "object",
"default": {
"int": "integer",
"bool": "boolean"
},
"description": "The list of short names of types and their long names."
},
"phpdoc-generator.numberOfLinesMethodSignature": {
"type": "integer",
"default": 15,
"description": "The number of lines in a method signature for parsing."
},
"phpdoc-generator.constructorWithType": {
"type": ["string", "boolean"],
"default": false,
"enum": [
false,
"void",
"returnDefinedTypeOrUndefinedType"
],
"description": "Adds a type to @return for '__constructor'.",
"enumDescriptions": [
"'__constructor' without type",
"Adds 'void to @return for '__constructor'",
"Adds a defined type or a type from the 'returnUndefinedType' property to @return for '__constructor'"
]
}
}
},
"commands": [
{
"command": "phpdoc-generator.generatePHPDoc",
"title": "Generate a PHPDoc comment"
}
],
"keybindings": [
{
"command": "phpdoc-generator.generatePHPDoc",
"key": "ctrl+enter",
"when": "editorTextFocus"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^13.0.0",
"eslint": "^6.0.0",
"typescript": "^3.0.0",
"vscode": "^1.1.36"
},
"repository": {
"type": "git",
"url": "https://github.com/ronvanderheijden/vscode-phpdoc-generator.git"
},
"__metadata": {
"publisherDisplayName": "ronvanderheijden"
}
}