From 56d242caca89f5288e6ce68474b2755eb94b9bfc Mon Sep 17 00:00:00 2001 From: Ulad Kasach Date: Tue, 3 Sep 2024 01:54:00 -0400 Subject: [PATCH] fix(practs): bump practs to latest best --- .github/workflows/.install.yml | 4 +- .github/workflows/.publish-npm.yml | 2 +- .github/workflows/.test.yml | 14 +- .husky/check.nvm.sh | 2 +- .husky/post-checkout | 2 +- jest.acceptance.config.ts | 3 + jest.unit.config.ts | 3 + package-lock.json | 567 +++-------------------------- package.json | 19 +- 9 files changed, 87 insertions(+), 529 deletions(-) diff --git a/.github/workflows/.install.yml b/.github/workflows/.install.yml index a9dfa96..bc60def 100644 --- a/.github/workflows/.install.yml +++ b/.github/workflows/.install.yml @@ -28,7 +28,7 @@ jobs: echo "PACKAGE_DEPS_HASH=$PACKAGE_DEPS_HASH" echo "package-deps-hash=$PACKAGE_DEPS_HASH" >> "$GITHUB_OUTPUT" - name: node-modules cache get - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 id: cache with: path: ./node_modules @@ -40,7 +40,7 @@ jobs: - name: node-modules cache set if: steps.cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ./node_modules key: ${{ steps.cache.outputs.cache-primary-key }} diff --git a/.github/workflows/.publish-npm.yml b/.github/workflows/.publish-npm.yml index 52ccf9b..4c3eb76 100644 --- a/.github/workflows/.publish-npm.yml +++ b/.github/workflows/.publish-npm.yml @@ -25,7 +25,7 @@ jobs: node-version-file: '.nvmrc' - name: node-modules cache get - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 id: cache with: path: ./node_modules diff --git a/.github/workflows/.test.yml b/.github/workflows/.test.yml index 2b162d3..fbb08a9 100644 --- a/.github/workflows/.test.yml +++ b/.github/workflows/.test.yml @@ -40,7 +40,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -61,7 +61,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -82,7 +82,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -103,7 +103,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -124,7 +124,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -145,7 +145,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} @@ -185,7 +185,7 @@ jobs: node-version-file: '.nvmrc' - name: get node-modules from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ./node_modules key: ${{ needs.install.outputs.node-modules-cache-key }} diff --git a/.husky/check.nvm.sh b/.husky/check.nvm.sh index f705ff2..d25f79d 100755 --- a/.husky/check.nvm.sh +++ b/.husky/check.nvm.sh @@ -1,4 +1,4 @@ #!/bin/bash # if exists a .nvmrc, then `nvm use`, to use the specified version -[[ -f ".nvmrc" ]] && nvm use +# [[ -f ".nvmrc" ]] && nvm use # todo: find a way to share nvm permissions diff --git a/.husky/post-checkout b/.husky/post-checkout index 993db11..9ef84af 100755 --- a/.husky/post-checkout +++ b/.husky/post-checkout @@ -1,5 +1,5 @@ #!/bin/sh . "$(dirname -- "$0")/_/husky.sh" -# . "$(dirname -- "$0")/check.nvm.sh" +. "$(dirname -- "$0")/check.nvm.sh" . "$(dirname -- "$0")/check.lockfile.sh" diff --git a/jest.acceptance.config.ts b/jest.acceptance.config.ts index a8ae45a..4a62e00 100644 --- a/jest.acceptance.config.ts +++ b/jest.acceptance.config.ts @@ -3,6 +3,9 @@ import type { Config } from 'jest'; // ensure tests run in utc, like they will on cicd and on server; https://stackoverflow.com/a/56277249/15593329 process.env.TZ = 'UTC'; +// ensure tests run like on local machines, so snapshots are equal on local && cicd +process.env.FORCE_COLOR = 'true'; + // https://jestjs.io/docs/configuration const config: Config = { verbose: true, diff --git a/jest.unit.config.ts b/jest.unit.config.ts index eb408ec..8267acc 100644 --- a/jest.unit.config.ts +++ b/jest.unit.config.ts @@ -3,6 +3,9 @@ import type { Config } from 'jest'; // ensure tests run in utc, like they will on cicd and on server; https://stackoverflow.com/a/56277249/15593329 process.env.TZ = 'UTC'; +// ensure tests run like on local machines, so snapshots are equal on local && cicd +process.env.FORCE_COLOR = 'true'; + // https://jestjs.io/docs/configuration const config: Config = { verbose: true, diff --git a/package-lock.json b/package-lock.json index ded0d10..0645d80 100644 --- a/package-lock.json +++ b/package-lock.json @@ -53,7 +53,7 @@ "@typescript-eslint/parser": "7.8.0", "core-js": "3.26.1", "cz-conventional-changelog": "3.3.0", - "declapract-typescript-ehmpathy": "0.33.2", + "declapract-typescript-ehmpathy": "0.35.6", "depcheck": "1.4.3", "eslint": "8.56.0", "eslint-config-airbnb-typescript": "18.0.0", @@ -4742,16 +4742,6 @@ "integrity": "sha512-7eQ2xYLLI/LsicL2nejW9Wyko3lcpN6O/z0ZLHrEQsg280zIdCv1t/0m6UtBjUHokCGBQ3gYTbHzDkZ1xOBwwg==", "dev": true }, - "node_modules/@types/lodash.omit": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@types/lodash.omit/-/lodash.omit-4.5.9.tgz", - "integrity": "sha512-zuAVFLUPJMOzsw6yawshsYGgq2hWUHtsZgeXHZmSFhaQQFC6EQ021uDKHkSjOpNhSvtNSU9165/o3o/Q51GpTw==", - "dev": true, - "peer": true, - "dependencies": { - "@types/lodash": "*" - } - }, "node_modules/@types/lodash.uniqby": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/@types/lodash.uniqby/-/lodash.uniqby-4.7.7.tgz", @@ -7100,17 +7090,19 @@ } }, "node_modules/declapract": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/declapract/-/declapract-0.11.2.tgz", - "integrity": "sha512-XD8Uf5bdwzJNE44KN6PhTHzpVEIsaza1vReL4miehFZ7T4vxt6WV4HnAoXt/DaTVRX6U7jap/K3BbsO45YIU7A==", + "version": "0.11.5", + "resolved": "https://registry.npmjs.org/declapract/-/declapract-0.11.5.tgz", + "integrity": "sha512-X2ab85VlFD5OohuFovNZz476zPiHbPqWn4ytDTD+Bl1wo+kTrxd1lh3iM+sIrAoI/KDr9yxTrX77Mrl4Z1U7tA==", "dev": true, + "hasInstallScript": true, "peer": true, "dependencies": { + "@ehmpathy/error-fns": "1.0.2", "@oclif/core": "2.0.11", - "@oclif/plugin-help": "3.1.0", + "@oclif/plugin-help": "3.3.1", "chalk": "2.4.2", "cross-path-sort": "1.0.0", - "domain-objects": "0.7.6", + "domain-objects": "0.22.1", "expect": "29.4.3", "fast-glob": "3.2.2", "find-nearest-package-json": "2.0.1", @@ -7124,7 +7116,7 @@ "shelljs": "0.8.5", "simple-leveled-log-methods": "0.1.4", "ts-node": "8.6.2", - "type-fns": "0.7.0", + "type-fns": "1.16.0", "uuid": "9.0.0", "yaml": "1.6.0" }, @@ -7136,32 +7128,18 @@ } }, "node_modules/declapract-typescript-ehmpathy": { - "version": "0.33.2", - "resolved": "https://registry.npmjs.org/declapract-typescript-ehmpathy/-/declapract-typescript-ehmpathy-0.33.2.tgz", - "integrity": "sha512-O36GgDif1US9/ZAxGFt+M/vIBxH/AMpOUoTQb88s2metDN0cffExUD1DTCUbJWP1TAyK6L70KIfusohz9o7QEQ==", + "version": "0.35.6", + "resolved": "https://registry.npmjs.org/declapract-typescript-ehmpathy/-/declapract-typescript-ehmpathy-0.35.6.tgz", + "integrity": "sha512-qBoT0kIkzy73YsfjwTeG+pWfDlTi5SvrR90eFYZRX6r+Qj3HhuMMkZFg5roxE5Q9DZTeCR12vKQSU0nuLcXNiQ==", "dev": true, "hasInstallScript": true, "dependencies": { - "@ehmpathy/error-fns": "1.3.1", + "domain-objects": "0.22.1", "expect": "29.4.2", - "flat": "5.0.2", - "lodash.uniq": "4.5.0" + "flat": "5.0.2" }, "peerDependencies": { - "declapract": "0.11.2" - } - }, - "node_modules/declapract-typescript-ehmpathy/node_modules/@ehmpathy/error-fns": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@ehmpathy/error-fns/-/error-fns-1.3.1.tgz", - "integrity": "sha512-WSQQ95mAVU9JammqFeEfeyf23YeVIRSnCtH1TZurlgCpFuilui8hId77cfq6RlaOkPZd5zdFEs6pjTTDXLchqA==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "type-fns": "0.9.0" - }, - "engines": { - "node": ">=8.0.0" + "declapract": "0.11.5" } }, "node_modules/declapract-typescript-ehmpathy/node_modules/expect": { @@ -7189,98 +7167,30 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/declapract-typescript-ehmpathy/node_modules/type-fns": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.9.0.tgz", - "integrity": "sha512-ndhY4JBIbKix0LuGA5smh/XhFFnbeudnih++WxVoGTfdrITsZe/s3qje9GZNdWwsO+YWGyQkNXwAjnWyM/dipw==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/declapract/node_modules/@oclif/plugin-help": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.1.0.tgz", - "integrity": "sha512-orSWpXGlJaX16eSjAtI8scA8QhrjQOaCSHodEx52t18JKbIVzG8jcngugyWAOB/V4jhPl0rdiVk9XFsaIIiG2g==", + "node_modules/declapract/node_modules/@ehmpathy/error-fns": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@ehmpathy/error-fns/-/error-fns-1.0.2.tgz", + "integrity": "sha512-v3aJIqUvD9a3drx1pyS8La+9u9WTTvNE35NksiD4Oo3VanNe8Rmue/atRHPg4nNYQ/xPv4+RoqC+OBj6cAY8VA==", "dev": true, + "hasInstallScript": true, "peer": true, "dependencies": { - "@oclif/command": "^1.5.20", - "@oclif/config": "^1.15.1", - "chalk": "^2.4.1", - "indent-string": "^4.0.0", - "lodash.template": "^4.4.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0", - "widest-line": "^2.0.1", - "wrap-ansi": "^4.0.0" + "type-fns": "0.9.0" }, "engines": { "node": ">=8.0.0" } }, - "node_modules/declapract/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/declapract/node_modules/domain-objects": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/domain-objects/-/domain-objects-0.7.6.tgz", - "integrity": "sha512-8Flf18TvaW1jUnFVNnnXTAF/4m8D31/44VlPL/+/Z+iUkPebW22L3zrjpobXpcwFfrcmvtJvv5pNKmVSet1G1Q==", + "node_modules/declapract/node_modules/@ehmpathy/error-fns/node_modules/type-fns": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.9.0.tgz", + "integrity": "sha512-ndhY4JBIbKix0LuGA5smh/XhFFnbeudnih++WxVoGTfdrITsZe/s3qje9GZNdWwsO+YWGyQkNXwAjnWyM/dipw==", "dev": true, "peer": true, - "dependencies": { - "@types/joi": "^17.2.3", - "@types/lodash.omit": "^4.5.6", - "@types/yup": "^0.29.6", - "lodash.omit": "^4.5.0", - "lodash.pick": "^4.4.0" - }, "engines": { "node": ">=8.0.0" } }, - "node_modules/declapract/node_modules/emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true, - "peer": true - }, - "node_modules/declapract/node_modules/string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "peer": true, - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/declapract/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/declapract/node_modules/ts-node": { "version": "8.6.2", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-8.6.2.tgz", @@ -7305,16 +7215,6 @@ "typescript": ">=2.7" } }, - "node_modules/declapract/node_modules/type-fns": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.7.0.tgz", - "integrity": "sha512-yADWicFwdz/GA4KTTUQ5cWIpXd7k5/4oh9aUhN5YAaRiZCao8XK5egRrHth4uYQVFzdD8Aq4S2haZue7AFfwmw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/declapract/node_modules/uuid": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", @@ -7325,108 +7225,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/declapract/node_modules/widest-line": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", - "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", - "dev": true, - "peer": true, - "dependencies": { - "string-width": "^2.1.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/widest-line/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/widest-line/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "peer": true, - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/widest-line/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/wrap-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz", - "integrity": "sha512-uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/declapract/node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/wrap-ansi/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "peer": true, - "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/declapract/node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", @@ -12652,13 +12450,6 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true, - "peer": true - }, "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", @@ -12701,20 +12492,6 @@ "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", "dev": true }, - "node_modules/lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==", - "dev": true, - "peer": true - }, - "node_modules/lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", - "dev": true, - "peer": true - }, "node_modules/lodash.snakecase": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", @@ -12727,27 +12504,6 @@ "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", "dev": true }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "peer": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "peer": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0" - } - }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", @@ -13030,11 +12786,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -21355,16 +21111,6 @@ "integrity": "sha512-7eQ2xYLLI/LsicL2nejW9Wyko3lcpN6O/z0ZLHrEQsg280zIdCv1t/0m6UtBjUHokCGBQ3gYTbHzDkZ1xOBwwg==", "dev": true }, - "@types/lodash.omit": { - "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@types/lodash.omit/-/lodash.omit-4.5.9.tgz", - "integrity": "sha512-zuAVFLUPJMOzsw6yawshsYGgq2hWUHtsZgeXHZmSFhaQQFC6EQ021uDKHkSjOpNhSvtNSU9165/o3o/Q51GpTw==", - "dev": true, - "peer": true, - "requires": { - "@types/lodash": "*" - } - }, "@types/lodash.uniqby": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/@types/lodash.uniqby/-/lodash.uniqby-4.7.7.tgz", @@ -23101,17 +22847,18 @@ "integrity": "sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==" }, "declapract": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/declapract/-/declapract-0.11.2.tgz", - "integrity": "sha512-XD8Uf5bdwzJNE44KN6PhTHzpVEIsaza1vReL4miehFZ7T4vxt6WV4HnAoXt/DaTVRX6U7jap/K3BbsO45YIU7A==", + "version": "0.11.5", + "resolved": "https://registry.npmjs.org/declapract/-/declapract-0.11.5.tgz", + "integrity": "sha512-X2ab85VlFD5OohuFovNZz476zPiHbPqWn4ytDTD+Bl1wo+kTrxd1lh3iM+sIrAoI/KDr9yxTrX77Mrl4Z1U7tA==", "dev": true, "peer": true, "requires": { + "@ehmpathy/error-fns": "1.0.2", "@oclif/core": "2.0.11", - "@oclif/plugin-help": "3.1.0", + "@oclif/plugin-help": "3.3.1", "chalk": "2.4.2", "cross-path-sort": "1.0.0", - "domain-objects": "0.7.6", + "domain-objects": "0.22.1", "expect": "29.4.3", "fast-glob": "3.2.2", "find-nearest-package-json": "2.0.1", @@ -23125,77 +22872,28 @@ "shelljs": "0.8.5", "simple-leveled-log-methods": "0.1.4", "ts-node": "8.6.2", - "type-fns": "0.7.0", + "type-fns": "1.16.0", "uuid": "9.0.0", "yaml": "1.6.0" }, "dependencies": { - "@oclif/plugin-help": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-3.1.0.tgz", - "integrity": "sha512-orSWpXGlJaX16eSjAtI8scA8QhrjQOaCSHodEx52t18JKbIVzG8jcngugyWAOB/V4jhPl0rdiVk9XFsaIIiG2g==", - "dev": true, - "peer": true, - "requires": { - "@oclif/command": "^1.5.20", - "@oclif/config": "^1.15.1", - "chalk": "^2.4.1", - "indent-string": "^4.0.0", - "lodash.template": "^4.4.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0", - "widest-line": "^2.0.1", - "wrap-ansi": "^4.0.0" - } - }, - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "peer": true - }, - "domain-objects": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/domain-objects/-/domain-objects-0.7.6.tgz", - "integrity": "sha512-8Flf18TvaW1jUnFVNnnXTAF/4m8D31/44VlPL/+/Z+iUkPebW22L3zrjpobXpcwFfrcmvtJvv5pNKmVSet1G1Q==", - "dev": true, - "peer": true, - "requires": { - "@types/joi": "^17.2.3", - "@types/lodash.omit": "^4.5.6", - "@types/yup": "^0.29.6", - "lodash.omit": "^4.5.0", - "lodash.pick": "^4.4.0" - } - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true, - "peer": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "peer": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "@ehmpathy/error-fns": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@ehmpathy/error-fns/-/error-fns-1.0.2.tgz", + "integrity": "sha512-v3aJIqUvD9a3drx1pyS8La+9u9WTTvNE35NksiD4Oo3VanNe8Rmue/atRHPg4nNYQ/xPv4+RoqC+OBj6cAY8VA==", "dev": true, "peer": true, "requires": { - "ansi-regex": "^4.1.0" + "type-fns": "0.9.0" + }, + "dependencies": { + "type-fns": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.9.0.tgz", + "integrity": "sha512-ndhY4JBIbKix0LuGA5smh/XhFFnbeudnih++WxVoGTfdrITsZe/s3qje9GZNdWwsO+YWGyQkNXwAjnWyM/dipw==", + "dev": true, + "peer": true + } } }, "ts-node": { @@ -23212,125 +22910,26 @@ "yn": "3.1.1" } }, - "type-fns": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.7.0.tgz", - "integrity": "sha512-yADWicFwdz/GA4KTTUQ5cWIpXd7k5/4oh9aUhN5YAaRiZCao8XK5egRrHth4uYQVFzdD8Aq4S2haZue7AFfwmw==", - "dev": true, - "peer": true - }, "uuid": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", "dev": true, "peer": true - }, - "widest-line": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", - "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", - "dev": true, - "peer": true, - "requires": { - "string-width": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "peer": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "peer": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "wrap-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz", - "integrity": "sha512-uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg==", - "dev": true, - "peer": true, - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, - "peer": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "peer": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "dev": true, - "peer": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } } } }, "declapract-typescript-ehmpathy": { - "version": "0.33.2", - "resolved": "https://registry.npmjs.org/declapract-typescript-ehmpathy/-/declapract-typescript-ehmpathy-0.33.2.tgz", - "integrity": "sha512-O36GgDif1US9/ZAxGFt+M/vIBxH/AMpOUoTQb88s2metDN0cffExUD1DTCUbJWP1TAyK6L70KIfusohz9o7QEQ==", + "version": "0.35.6", + "resolved": "https://registry.npmjs.org/declapract-typescript-ehmpathy/-/declapract-typescript-ehmpathy-0.35.6.tgz", + "integrity": "sha512-qBoT0kIkzy73YsfjwTeG+pWfDlTi5SvrR90eFYZRX6r+Qj3HhuMMkZFg5roxE5Q9DZTeCR12vKQSU0nuLcXNiQ==", "dev": true, "requires": { - "@ehmpathy/error-fns": "1.3.1", + "domain-objects": "0.22.1", "expect": "29.4.2", - "flat": "5.0.2", - "lodash.uniq": "4.5.0" + "flat": "5.0.2" }, "dependencies": { - "@ehmpathy/error-fns": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@ehmpathy/error-fns/-/error-fns-1.3.1.tgz", - "integrity": "sha512-WSQQ95mAVU9JammqFeEfeyf23YeVIRSnCtH1TZurlgCpFuilui8hId77cfq6RlaOkPZd5zdFEs6pjTTDXLchqA==", - "dev": true, - "requires": { - "type-fns": "0.9.0" - } - }, "expect": { "version": "29.4.2", "resolved": "https://registry.npmjs.org/expect/-/expect-29.4.2.tgz", @@ -23349,12 +22948,6 @@ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.2.tgz", "integrity": "sha512-vERN30V5i2N6lqlFu4ljdTqQAgrkTFMC9xaIIfOPYBw04pufjXRty5RuXBiB1d72tGbURa/UgoiHB90ruOSivg==", "dev": true - }, - "type-fns": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/type-fns/-/type-fns-0.9.0.tgz", - "integrity": "sha512-ndhY4JBIbKix0LuGA5smh/XhFFnbeudnih++WxVoGTfdrITsZe/s3qje9GZNdWwsO+YWGyQkNXwAjnWyM/dipw==", - "dev": true } } }, @@ -27202,13 +26795,6 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true, - "peer": true - }, "lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", @@ -27251,20 +26837,6 @@ "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", "dev": true }, - "lodash.omit": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.omit/-/lodash.omit-4.5.0.tgz", - "integrity": "sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==", - "dev": true, - "peer": true - }, - "lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", - "dev": true, - "peer": true - }, "lodash.snakecase": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", @@ -27277,27 +26849,6 @@ "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", "dev": true }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dev": true, - "peer": true, - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dev": true, - "peer": true, - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", @@ -27513,11 +27064,11 @@ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" }, "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, diff --git a/package.json b/package.json index 082657e..d368df8 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,6 @@ "@oclif/plugin-help" ] }, - "main": "dist/contract/index.js", "types": "dist/contract/index.d.ts", "bin": { "declapract": "./bin/run" @@ -37,6 +36,8 @@ "/bin", "/dist" ], + "license": "MIT", + "main": "dist/contract/index.js", "scripts": { "generate:cli-readme": "npm run build && oclif-dev readme", "build:ts": "tsc -p ./tsconfig.build.json", @@ -58,8 +59,8 @@ "test:lint:deps": "npx depcheck -c ./depcheckrc.yml", "test:lint:eslint": "eslint -c ./.eslintrc.js src/**/*.ts", "test:lint": "npm run test:lint:eslint && npm run test:lint:deps", - "test:unit": "FORCE_COLOR=true jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')", - "test:integration": "FORCE_COLOR=true jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')", + "test:unit": "jest -c ./jest.unit.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')", + "test:integration": "jest -c ./jest.integration.config.ts --forceExit --verbose --passWithNoTests $([ -z $THOROUGH ] && echo '--changedSince=main')", "test:acceptance:locally": "npm run build && LOCALLY=true jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests", "test": "npm run test:commits && npm run test:types && npm run test:format && npm run test:lint && npm run test:unit && npm run test:integration && npm run test:acceptance:locally", "test:acceptance": "npm run build && jest -c ./jest.acceptance.config.ts --forceExit --verbose --runInBand --passWithNoTests", @@ -67,7 +68,8 @@ "prepublish": "npm run build", "preversion": "npm run prepush", "postversion": "git push origin HEAD --tags --no-verify", - "postinstall": "[ -d .git ] && npx husky install || exit 0" + "postinstall": "[ -d .git ] && npm run prepare:husky || exit 0", + "prepare:husky": "npx husky install && chmod ug+x .husky/*" }, "dependencies": { "@ehmpathy/error-fns": "1.3.2", @@ -89,7 +91,7 @@ "shelljs": "0.8.5", "simple-leveled-log-methods": "0.1.4", "ts-node": "8.6.2", - "type-fns": "1.16.0", + "type-fns": "1.17.0", "uuid": "9.0.0", "yaml": "1.6.0" }, @@ -110,7 +112,7 @@ "@typescript-eslint/parser": "7.8.0", "core-js": "3.26.1", "cz-conventional-changelog": "3.3.0", - "declapract-typescript-ehmpathy": "0.33.2", + "declapract-typescript-ehmpathy": "0.35.6", "depcheck": "1.4.3", "eslint": "8.56.0", "eslint-config-airbnb-typescript": "18.0.0", @@ -121,7 +123,7 @@ "jest": "29.3.1", "prettier": "2.8.1", "simple-lambda-client": "2.1.3", - "test-fns": "1.0.2", + "test-fns": "1.4.2", "ts-jest": "29.1.3", "ts-node": "10.9.2", "typescript": "5.4.5", @@ -131,6 +133,5 @@ "commitizen": { "path": "./node_modules/cz-conventional-changelog" } - }, - "license": "MIT" + } }