@smarlhens/npm-check-engines 0.13.3 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +15 -14
package/README.md CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  ## Prerequisites
28
28
 
29
- - [Node.JS](https://nodejs.org/en/download/) **version ^18.19.0 || ^20.5.0 || ^22.0.0 || ^24.0.0**
29
+ - [Node.JS](https://nodejs.org/en/download/) **version ^20.19.0 || ^22.12.0 || >=24.0.0**
30
30
 
31
31
  ---
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smarlhens/npm-check-engines",
3
- "version": "0.13.3",
3
+ "version": "0.14.1",
4
4
  "description": "Node.JS engines constraint checker written in TypeScript.",
5
5
  "keywords": [
6
6
  "node",
@@ -59,48 +59,49 @@
59
59
  "test:ci": "npm run test:coverage",
60
60
  "test:coverage": "npm run test -- --coverage",
61
61
  "test:snapshot": "npm run test -- -u",
62
- "test:watch": "vitest watch"
62
+ "test:watch": "vitest watch",
63
+ "typecheck": "tsc --noEmit"
63
64
  },
64
65
  "dependencies": {
65
66
  "ajv": "8.18.0",
66
67
  "chalk": "5.6.2",
67
68
  "cli-table": "0.3.11",
68
69
  "debug": "4.4.3",
69
- "find-up": "7.0.0",
70
+ "find-up": "8.0.0",
70
71
  "listr2": "8.3.3",
71
72
  "lodash-es": "4.17.23",
72
73
  "semver": "7.7.4",
73
- "sort-package-json": "2.15.1",
74
+ "sort-package-json": "3.6.1",
74
75
  "update-notifier": "7.3.1",
75
- "yargs": "17.7.2"
76
+ "yargs": "18.0.0"
76
77
  },
77
78
  "devDependencies": {
78
79
  "@commitlint/cli": "20.5.0",
79
80
  "@commitlint/config-conventional": "20.5.0",
80
81
  "@swc/core": "1.15.21",
81
- "@trivago/prettier-plugin-sort-imports": "5.2.2",
82
+ "@trivago/prettier-plugin-sort-imports": "6.0.2",
82
83
  "@types/cli-table": "0.3.4",
83
84
  "@types/debug": "4.1.13",
84
85
  "@types/lodash-es": "4.17.12",
85
- "@types/node": "18.19.130",
86
+ "@types/node": "20.19.37",
86
87
  "@types/semver": "7.7.1",
87
88
  "@types/update-notifier": "6.0.8",
88
89
  "@types/yargs": "17.0.35",
89
- "@vitest/coverage-v8": "3.2.4",
90
+ "@vitest/coverage-v8": "4.1.1",
90
91
  "execa": "9.6.1",
91
92
  "husky": "9.1.7",
92
- "knip": "5.53.0",
93
- "lint-staged": "15.5.2",
93
+ "knip": "6.0.6",
94
+ "lint-staged": "16.4.0",
94
95
  "prettier": "3.8.1",
95
- "rimraf": "5.0.10",
96
+ "rimraf": "6.1.3",
96
97
  "ts-node": "10.9.2",
97
98
  "tslib": "2.8.1",
98
99
  "tsup": "8.5.1",
99
100
  "typescript": "5.9.3",
100
- "vitest": "3.2.4"
101
+ "vitest": "4.1.1"
101
102
  },
102
103
  "engines": {
103
- "node": "^18.19.0 || ^20.5.0 || ^22.0.0 || >=24.0.0",
104
- "npm": ">=8.0.0"
104
+ "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
105
+ "npm": ">=10.0.0"
105
106
  }
106
107
  }