@rowanmanning/node-versions 2.0.21 → 3.0.0

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 +3 -3
package/README.md CHANGED
@@ -16,7 +16,7 @@ Get the Node.js versions that a repo says it supports.
16
16
 
17
17
  This library requires the following to run:
18
18
 
19
- * [Node.js](https://nodejs.org/) 18+
19
+ * [Node.js](https://nodejs.org/) 20+
20
20
 
21
21
 
22
22
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowanmanning/node-versions",
3
- "version": "2.0.21",
3
+ "version": "3.0.0",
4
4
  "description": "Get the Node.js versions that a repo says it supports",
5
5
  "keywords": [],
6
6
  "author": "Rowan Manning (https://rowanmanning.com/)",
@@ -13,7 +13,7 @@
13
13
  "bugs": "https://github.com/rowanmanning/repo-tools/issues",
14
14
  "license": "MIT",
15
15
  "engines": {
16
- "node": "18.x || 20.x || 22.x"
16
+ "node": "20.x || 22.x"
17
17
  },
18
18
  "scripts": {
19
19
  "fetch-versions": "node ./scripts/fetch-node-versions.js",
@@ -22,7 +22,7 @@
22
22
  "main": "index.js",
23
23
  "types": "index.d.ts",
24
24
  "dependencies": {
25
- "@rowanmanning/package-json": "^1.0.3",
25
+ "@rowanmanning/package-json": "^2.0.0",
26
26
  "semver": "^7.7.1"
27
27
  }
28
28
  }