Skip to content

Commit d9b360f

Browse files
committed
chore: update deps and node to 16
BREAKING CHANGE: minimum node version is not 16.14.0
1 parent 9c927fb commit d9b360f

File tree

2 files changed

+31
-26
lines changed

2 files changed

+31
-26
lines changed

package.json

+17-14
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,29 @@
4949
},
5050
"homepage": "https://github.com/vivocha/jsonref#readme",
5151
"devDependencies": {
52-
"@commitlint/config-conventional": "^12.1.1",
53-
"@types/chai": "^4.2.17",
54-
"@types/chai-as-promised": "^7.1.3",
52+
"@commitlint/config-conventional": "^16.2.1",
53+
"@types/chai": "^4.3.0",
54+
"@types/chai-as-promised": "^7.1.5",
5555
"@types/chai-spies": "^1.0.3",
56-
"@types/mocha": "^8.2.2",
57-
"@types/node": "^15.0.1",
58-
"chai": "^4.3.4",
56+
"@types/mocha": "^9.1.0",
57+
"@types/node": "^16.11.26",
58+
"chai": "^4.3.6",
5959
"chai-as-promised": "^7.1.1",
6060
"chai-spies": "^1.0.0",
61-
"commitizen": "^4.2.3",
62-
"commitlint": "^12.1.1",
63-
"coveralls": "^3.1.0",
61+
"commitizen": "^4.2.4",
62+
"commitlint": "^16.2.1",
63+
"coveralls": "^3.1.1",
6464
"cz-conventional-changelog": "^3.3.0",
65-
"husky": "^6.0.0",
66-
"mocha": "^8.3.2",
67-
"mochawesome": "^6.2.2",
65+
"husky": "^7.0.4",
66+
"mocha": "^9.2.1",
67+
"mochawesome": "^7.1.0",
6868
"nyc": "^15.1.0",
6969
"rimraf": "^3.0.2",
70-
"semantic-release": "^17.4.2",
71-
"typescript": "^4.2.4"
70+
"semantic-release": "^19.0.2",
71+
"typescript": "^4.6.2"
72+
},
73+
"engines": {
74+
"node": ">=16.14.0"
7275
},
7376
"config": {
7477
"commitizen": {

tsconfig.json

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
4-
"target": "es2017",
5-
"noImplicitAny": false,
6-
"sourceMap": true,
7-
"declaration": true,
8-
"outDir": "dist",
9-
"strictNullChecks": true,
10-
"allowJs": false
3+
"incremental": true,
4+
"module": "commonjs",
5+
"target": "es2020",
6+
"noImplicitAny": false,
7+
"sourceMap": true,
8+
"declaration": true,
9+
"outDir": "dist",
10+
"strictNullChecks": true,
11+
"allowJs": false,
12+
"experimentalDecorators": true,
13+
"esModuleInterop": true
1114
},
12-
"include": [
13-
"src/**/*.ts"
14-
]
15-
}
15+
"include": ["src/**/*.ts"]
16+
}
17+

0 commit comments

Comments
 (0)