refactor: update dependencies

This commit is contained in:
Rainer Killinger
2022-05-27 16:29:37 +02:00
parent e8eacd2c74
commit 9560e0c526
2 changed files with 129 additions and 103 deletions

View File

@@ -6,7 +6,7 @@
"build": "npm run tslint && npm run compile",
"compile": "rimraf lib && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"documentation": "typedoc --out docs --readme README.md --includeVersion --listInvalidSymbolLinks src",
"documentation": "typedoc --out docs --readme README.md --includeVersion --listInvalidSymbolLinks --entryPointStrategy expand src",
"prepublishOnly": "npm ci && npm run build",
"postversion": "npm run changelog",
"preversion": "npm run prepublishOnly",
@@ -26,25 +26,25 @@
],
"license": "GPL-3.0-only",
"dependencies": {
"@types/node": "14.18.0",
"@types/node": "14.18.18",
"@types/semver": "7.3.9",
"@types/yaml": "1.9.7",
"chalk": "4.1.2",
"commander": "8.3.0",
"semver": "7.3.5",
"commander": "9.2.0",
"semver": "7.3.7",
"tslint": "6.1.3",
"tslint-eslint-rules": "5.4.0",
"yaml": "1.10.2"
},
"devDependencies": {
"conventional-changelog-cli": "2.1.1",
"conventional-changelog-cli": "2.2.2",
"prepend-file-cli": "1.0.6",
"rimraf": "3.0.2",
"typedoc": "0.22.10",
"typescript": "4.4.3"
"typedoc": "0.22.15",
"typescript": "4.4.4"
},
"peerDependencies": {
"typescript": ">=3.8.3"
"typescript": ">=4.4.4"
},
"bin": {
"openstapps-configuration": "lib/cli.js"