@form8ion/eslint-config-extender 10.0.0-beta.1 → 10.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.
- package/README.md +1 -1
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ $ npm test
|
|
|
158
158
|
|
|
159
159
|
[license-link]: LICENSE
|
|
160
160
|
|
|
161
|
-
[license-badge]: https://img.shields.io/github/license/form8ion/eslint-config-extender.svg
|
|
161
|
+
[license-badge]: https://img.shields.io/github/license/form8ion/eslint-config-extender.svg?logo=opensourceinitiative
|
|
162
162
|
|
|
163
163
|
[npm-link]: https://www.npmjs.com/package/@form8ion/eslint-config-extender
|
|
164
164
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@form8ion/eslint-config-extender",
|
|
3
3
|
"description": "shareable ESLint config scaffolder for extending another config",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "10.0.0
|
|
5
|
+
"version": "10.0.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": "^18.19.0 || ^20.6.1 || >=22"
|
|
@@ -17,16 +17,16 @@
|
|
|
17
17
|
"sideEffects": false,
|
|
18
18
|
"scripts": {
|
|
19
19
|
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
|
|
20
|
-
"lint:lockfile": "lockfile-lint
|
|
20
|
+
"lint:lockfile": "lockfile-lint",
|
|
21
21
|
"lint:js": "eslint . --cache",
|
|
22
|
-
"lint:md": "
|
|
22
|
+
"lint:md": "remark . --frail",
|
|
23
23
|
"pregenerate:md": "run-s build",
|
|
24
|
-
"generate:md": "NODE_OPTIONS
|
|
24
|
+
"generate:md": "NODE_OPTIONS=--enable-source-maps remark . --output",
|
|
25
25
|
"lint:sensitive": "ban",
|
|
26
26
|
"pretest:integration:base": "run-s build",
|
|
27
27
|
"lint:gherkin": "gherkin-lint",
|
|
28
28
|
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
|
|
29
|
-
"test:integration:base": "NODE_OPTIONS
|
|
29
|
+
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
|
|
30
30
|
"test:integration:debug": "DEBUG=test run-s test:integration",
|
|
31
31
|
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
|
|
32
32
|
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"lint:peer": "npm ls >/dev/null",
|
|
43
43
|
"prepare": "husky install",
|
|
44
44
|
"lint:engines": "ls-engines",
|
|
45
|
-
"lint:publish": "publint --strict"
|
|
45
|
+
"lint:publish": "publint --strict",
|
|
46
|
+
"lint:js:fix": "run-s 'lint:js -- --fix'"
|
|
46
47
|
},
|
|
47
48
|
"files": [
|
|
48
49
|
"example.js",
|
|
@@ -52,6 +53,7 @@
|
|
|
52
53
|
"access": "public",
|
|
53
54
|
"provenance": true
|
|
54
55
|
},
|
|
56
|
+
"packageManager": "npm@10.8.3+sha256.b7dc7eb48d7479b93668e913c7ad686ab2aa71c705d4a56b5323d1bffdba2972",
|
|
55
57
|
"dependencies": {
|
|
56
58
|
"@form8ion/config-file": "^1.1.2",
|
|
57
59
|
"@form8ion/core": "^4.7.1",
|
|
@@ -92,6 +94,5 @@
|
|
|
92
94
|
"rollup-plugin-auto-external": "2.0.0",
|
|
93
95
|
"testdouble": "3.20.2",
|
|
94
96
|
"vitest": "2.1.1"
|
|
95
|
-
}
|
|
96
|
-
"packageManager": "npm@10.8.3+sha512.d08425c8062f56d43bb8e84315864218af2492eb769e1f1ca40740f44e85bd148969382d651660363942e5909cb7ffcbef7ca0ae963ddc2c57a51243b4da8f56"
|
|
97
|
+
}
|
|
97
98
|
}
|