@wordpress/npm-package-json-lint-config 4.42.0 → 5.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 +4 -3
package/README.md CHANGED
@@ -10,7 +10,7 @@ Install the module
10
10
  $ npm install @wordpress/npm-package-json-lint-config
11
11
  ```
12
12
 
13
- **Note**: This package requires Node.js 14.0.0 or later. It is not compatible with older versions.
13
+ **Note**: This package requires Node.js version with long-term support status (check [Active LTS or Maintenance LTS releases](https://nodejs.org/en/about/previous-releases)). It is not compatible with older versions.
14
14
 
15
15
  ## Usage
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/npm-package-json-lint-config",
3
- "version": "4.42.0",
3
+ "version": "5.0.0",
4
4
  "description": "WordPress npm-package-json-lint shareable configuration.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -20,7 +20,8 @@
20
20
  "url": "https://github.com/WordPress/gutenberg/issues"
21
21
  },
22
22
  "engines": {
23
- "node": ">=14"
23
+ "node": ">=18.12.0",
24
+ "npm": ">=8.19.2"
24
25
  },
25
26
  "files": [
26
27
  "index.js"
@@ -32,5 +33,5 @@
32
33
  "publishConfig": {
33
34
  "access": "public"
34
35
  },
35
- "gitHead": "581d8a5580dba8f600b7268d51eb554771ae482c"
36
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
36
37
  }