diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 87 |
1 files changed, 59 insertions, 28 deletions
diff --git a/package.json b/package.json index 8a0a9d6..08d6266 100644 --- a/package.json +++ b/package.json @@ -2,36 +2,36 @@ "name": "doxdocgen", "displayName": "Doxygen Documentation Generator", "description": "Let me generate Doxygen documentation from your source code for you.", - "version": "0.5.0", + "version": "0.5.2", "publisher": "cschlosser", "engines": { - "vscode": "^1.16.0" + "vscode": "^1.37.0" }, "categories": [ "Other" ], "badges": [ { - "url": "https://travis-ci.org/christophschlosser/doxdocgen.svg?branch=master", - "href": "https://travis-ci.org/christophschlosser/doxdocgen", - "description": "Continuous Integration (Travis)" + "url": "https://travis-ci.org/christophschlosser/doxdocgen.svg?branch=master", + "href": "https://travis-ci.org/christophschlosser/doxdocgen", + "description": "Continuous Integration (Travis)" }, { - "url": "https://ci.appveyor.com/api/projects/status/4h84071p9tv0y9r6?svg=true", - "href": "https://ci.appveyor.com/project/christophschlosser/doxdocgen", - "description": "Continuous Integration (AppVeyor)" + "url": "https://ci.appveyor.com/api/projects/status/4h84071p9tv0y9r6?svg=true", + "href": "https://ci.appveyor.com/project/christophschlosser/doxdocgen", + "description": "Continuous Integration (AppVeyor)" }, { - "url": "https://codecov.io/gh/christophschlosser/doxdocgen/branch/master/graph/badge.svg", - "href": "https://codecov.io/gh/christophschlosser/doxdocgen", - "description": "Code coverage" + "url": "https://codecov.io/gh/christophschlosser/doxdocgen/branch/master/graph/badge.svg", + "href": "https://codecov.io/gh/christophschlosser/doxdocgen", + "description": "Code coverage" }, { "url": "https://isitmaintained.com/badge/resolution/christophschlosser/doxdocgen.svg", "href": "https://isitmaintained.com/project/christophschlosser/doxdocgen", "description": "Response time for issues" } -], + ], "activationEvents": [ "onLanguage:cpp", "onLanguage:c" @@ -98,8 +98,13 @@ }, "doxdocgen.file.copyrightTag": { "description": "File copyright documentation tag. Array of strings will be converted to one line per element. Can template {year}.", - "type": ["array", "string"], - "default": ["@copyright Copyright (c) {year}"] + "type": [ + "array", + "string" + ], + "default": [ + "@copyright Copyright (c) {year}" + ] }, "doxdocgen.file.versionTag": { "description": "Version number for the file.", @@ -107,14 +112,30 @@ "default": "@version 0.1" }, "doxdocgen.file.customTag": { - "description": "Additional file documentation. Array of strings will be converted to one line per element. Can template {year}, {date}, {author}, and {email}.", - "type": ["array", "string"], - "default": [] + "description": "Additional file documentation. Array of strings will be converted to one line per element. Can template {year}, {date}, {author}, and {email}.", + "type": [ + "array", + "string" + ], + "default": [] }, "doxdocgen.file.fileOrder": { "description": "The order to use for the file comment. Values can be used multiple times. Valid values are shown in default setting.", - "type": ["array", "string"], - "default": ["file", "author", "brief", "version", "date", "empty", "copyright", "empty", "custom"] + "type": [ + "array", + "string" + ], + "default": [ + "file", + "author", + "brief", + "version", + "date", + "empty", + "copyright", + "empty", + "custom" + ] }, "doxdocgen.generic.includeTypeAtReturn": { "description": "Whether include type information at return.", @@ -183,8 +204,17 @@ }, "doxdocgen.generic.order": { "description": "The order to use for the comment generation. Values can be used multiple times. Valid values are shown in default setting.", - "type": ["array", "string"], - "default": ["brief", "empty", "tparam", "param", "return"] + "type": [ + "array", + "string" + ], + "default": [ + "brief", + "empty", + "tparam", + "param", + "return" + ] } } } @@ -217,14 +247,15 @@ "opn": "^5.2.0" }, "devDependencies": { - "@types/mocha": "^2.2.48", - "@types/node": "^7.0.43", - "decache": "^4.4.0", + "@types/mocha": "^5.2.7", + "@types/node": "^12.7.1", + "decache": "^4.5.1", "istanbul": "^0.4.5", - "mocha": "^5.0.1", - "remap-istanbul": "^0.10.1", - "tslint": "^5.9.1", + "mocha": "^6.2.1", + "remap-istanbul": "^0.13.0", + "tslint": "^5.20.0", + "vscode": "^1.1.36", "typescript": "^2.7.2", - "vscode": "^1.1.10" + "handlebars": "^4.4.0" } } |