Skip to content

Commit 67b93bf

Browse files
committed
Upgrade deps
1 parent 86975e8 commit 67b93bf

File tree

6 files changed

+1034
-1060
lines changed

6 files changed

+1034
-1060
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type import("eslint").Linter.BaseConfig<import("eslint").Linter.RulesRecord> */
1+
/** @type import("eslint").Linter.Config */
22
module.exports = {
33
env: { node: true },
44
extends: [

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
lint-staged
4+
"$(yarn bin)"/lint-staged

.ncurc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* npm-check-update
3+
*
4+
* Use npm-check-update to upgrade all packages in package.json
5+
*
6+
* Run `ncu`.
7+
*/
8+
9+
module.exports = {
10+
upgrade: true,
11+
dep: "prod,dev",
12+
packageManager: "yarn",
13+
};

jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/** @typedef {import('ts-jest')} */
2+
/** @type {import('@jest/types').Config.InitialOptions} */
13
module.exports = {
24
collectCoverageFrom: ["src/**/*.ts"],
35
coverageThreshold: {

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@
4141
},
4242
"devDependencies": {
4343
"@tsconfig/node10": "^1.0.8",
44-
"@types/eslint": "^7.28.0",
45-
"@types/jest": "^27.0.2",
46-
"@types/node": "^16.10.1",
47-
"@typescript-eslint/eslint-plugin": "^4.32.0",
48-
"@typescript-eslint/parser": "^4.32.0",
49-
"eslint": "^7.0.0",
44+
"@types/eslint": "^8.2.1",
45+
"@types/jest": "^27.0.3",
46+
"@types/node": "^16.11.13",
47+
"@typescript-eslint/eslint-plugin": "^5.7.0",
48+
"@typescript-eslint/parser": "^5.7.0",
49+
"eslint": "^8.4.1",
5050
"eslint-config-prettier": "^8.3.0",
5151
"eslint-files": "^1.0.0",
52-
"eslint-plugin-import": "^2.24.2",
53-
"eslint-plugin-promise": "^5.1.0",
54-
"husky": "^7.0.2",
55-
"jest": "^27.2.3",
56-
"lint-staged": "^11.1.2",
57-
"np": "^7.5.0",
52+
"eslint-plugin-import": "^2.25.3",
53+
"eslint-plugin-promise": "^5.2.0",
54+
"husky": "^7.0.4",
55+
"jest": "^27.4.5",
56+
"lint-staged": "^12.1.2",
57+
"np": "^7.6.0",
5858
"pinst": "^2.1.6",
59-
"prettier": "^2.4.1",
60-
"ts-jest": "^27.0.5",
61-
"typescript": "^4.4.3"
59+
"prettier": "^2.5.1",
60+
"ts-jest": "^27.1.1",
61+
"typescript": "^4.5.4"
6262
},
6363
"peerDependencies": {
6464
"eslint": ">=6.7.0"

0 commit comments

Comments
 (0)