refactor: update dependencies

This commit is contained in:
Rainer Killinger
2021-12-14 12:26:04 +01:00
parent a11a24225b
commit 3c3a571dca
4 changed files with 551 additions and 931 deletions

1455
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,7 +12,7 @@
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
"check-configuration": "openstapps-configuration", "check-configuration": "openstapps-configuration",
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'", "compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src", "documentation": "typedoc --name \"@openstapps/logger\" --includeVersion --out docs --readme README.md --listInvalidSymbolLinks src",
"postversion": "npm run changelog", "postversion": "npm run changelog",
"prepublishOnly": "npm ci && npm run build", "prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly", "preversion": "npm run prepublishOnly",
@@ -55,31 +55,31 @@
"statements": 95 "statements": 95
}, },
"devDependencies": { "devDependencies": {
"@openstapps/configuration": "0.27.0", "@openstapps/configuration": "0.28.1",
"@types/chai": "4.2.21", "@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.4", "@types/chai-as-promised": "7.1.4",
"@types/chai-spies": "1.0.3", "@types/chai-spies": "1.0.3",
"@types/mocha": "8.2.3", "@types/mocha": "9.0.0",
"chai": "4.3.4", "chai": "4.3.4",
"chai-as-promised": "7.1.1", "chai-as-promised": "7.1.1",
"chai-spies": "1.0.0", "chai-spies": "1.0.0",
"conventional-changelog-cli": "2.1.1", "conventional-changelog-cli": "2.1.1",
"mocha": "8.4.0", "mocha": "9.1.3",
"mocha-typescript": "1.1.17", "mocha-typescript": "1.1.17",
"nyc": "15.1.0", "nyc": "15.1.0",
"prepend-file-cli": "1.0.6", "prepend-file-cli": "1.0.6",
"rimraf": "3.0.2", "rimraf": "3.0.2",
"ts-node": "9.1.1", "ts-node": "10.4.0",
"tslint": "6.1.3", "tslint": "6.1.3",
"typedoc": "0.18.0", "typedoc": "0.22.10",
"typescript": "3.8.3" "typescript": "4.4.3"
}, },
"dependencies": { "dependencies": {
"@types/node": "14.17.7", "@types/node": "14.17.7",
"@types/nodemailer": "6.4.4", "@types/nodemailer": "6.4.4",
"chalk": "4.1.2", "chalk": "4.1.2",
"flatted": "3.2.2", "flatted": "3.2.4",
"moment": "2.29.1", "moment": "2.29.1",
"nodemailer": "6.6.3" "nodemailer": "6.7.2"
} }
} }

View File

@@ -354,7 +354,7 @@ export class SMTP extends VerifiableTransport {
/* tslint:disable-next-line:no-console */ /* tslint:disable-next-line:no-console */
console.warn( console.warn(
'SMTP verification error was ignored, because tranport failures are allowed: ', 'SMTP verification error was ignored, because tranport failures are allowed: ',
err.message, (err as Error).message,
); );
} }

View File

@@ -1,3 +1,6 @@
{ {
"extends": "./node_modules/@openstapps/configuration/tslint.json" "extends": "./node_modules/@openstapps/configuration/tslint.json",
"rules": {
"no-redundant-jsdoc": false
}
} }