diff options
| author | Christoph Schlosser <2466365+cschlosser@users.noreply.github.com> | 2021-04-17 22:12:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-17 22:12:38 +0200 |
| commit | dbcf5dc87d83ee59fc23e4eaa225a15655d17d2d (patch) | |
| tree | d22cb94be324153581658e80a8596765755971a0 /package.json | |
| parent | 703019a593c1e4118b580015b1af8bcfbb86b135 (diff) | |
| download | doxdocgen-dbcf5dc87d83ee59fc23e4eaa225a15655d17d2d.tar.gz | |
Prepare release 1.2.0 (#213)1.2.0
* Prepare release 1.2.0
* Update versions
* Lint
* update appveyor
* Update travis
* Use yarn
* Add nyc
* Run cov instead of test
* remove package-lock.json
* Remove istanbul
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/package.json b/package.json index c081c50..f8b6c60 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "name": "doxdocgen", "displayName": "Doxygen Documentation Generator", "description": "Let me generate Doxygen documentation from your source code for you.", - "version": "1.1.1", + "version": "1.2.0", "publisher": "cschlosser", "engines": { - "vscode": "^1.37.0" + "vscode": "^1.55.0" }, "categories": [ "Other" @@ -236,7 +236,7 @@ "type": "boolean", "default": false }, - "doxdocgen.generic.commandSuggestion":{ + "doxdocgen.generic.commandSuggestion": { "description": "Provide intellisense and snippet for doxygen commands", "type": "boolean", "default": true @@ -261,30 +261,34 @@ "url": "https://github.com/cschlosser/doxdocgen/labels/bug" }, "scripts": { - "vscode:prepublish": "npm run compile", + "vscode:prepublish": "yarn 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" + "test": "yarn compile && node ./out/test/runTests.js", + "cov": "rm -rf coverage .nyc_output && nyc yarn test" }, "dependencies": { - "simple-git": "^2.20.1", "env-var": "^4.1.0", "moment": "^2.20.1", - "opn": "^5.2.0" + "opn": "^5.2.0", + "simple-git": "^2.38.0" }, "devDependencies": { + "@istanbuljs/nyc-config-typescript": "1.0.0", "@types/mocha": "^5.2.7", "@types/node": "12.7.1", + "@types/vscode": "^1.55.0", "decache": "^4.5.1", "handlebars": "^4.7.3", - "istanbul": "^0.4.5", "minimist": ">=1.2.2", - "mocha": "^6.2.1", + "mocha": "^8.3.2", + "nyc": "13.1.0", "remap-istanbul": "^0.13.0", + "source-map-support": "^0.5.19", + "ts-node": "^9.1.1", "tslint": "^5.20.0", - "typescript": "^3.8.3", - "vscode": "^1.1.36", + "typescript": "^4.2.4", + "vscode-test": "^1.5.2", "yargs-parser": ">=13.1.2" } } |