@form8ion/eslint-config-extender 4.0.1 → 5.0.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.
- package/README.md +2 -1
- package/example.js +2 -1
- package/package.json +31 -34
package/README.md
CHANGED
|
@@ -87,7 +87,8 @@ const {scaffold, extendEslintConfig} = require('@form8ion/eslint-config-extender
|
|
|
87
87
|
[jsQuestionNames.SCOPE]: 'org-name',
|
|
88
88
|
[jsQuestionNames.PACKAGE_MANAGER]: packageManagers.NPM,
|
|
89
89
|
[jsQuestionNames.NODE_VERSION_CATEGORY]: 'LTS',
|
|
90
|
-
[jsQuestionNames.CI_SERVICE]: 'Other'
|
|
90
|
+
[jsQuestionNames.CI_SERVICE]: 'Other',
|
|
91
|
+
[jsQuestionNames.PROVIDE_EXAMPLE]: false
|
|
91
92
|
},
|
|
92
93
|
vcsHosts: {
|
|
93
94
|
GitHub: {
|
package/example.js
CHANGED
|
@@ -60,7 +60,8 @@ stubbedFs({node_modules: stubbedNodeModules});
|
|
|
60
60
|
[jsQuestionNames.SCOPE]: 'org-name',
|
|
61
61
|
[jsQuestionNames.PACKAGE_MANAGER]: packageManagers.NPM,
|
|
62
62
|
[jsQuestionNames.NODE_VERSION_CATEGORY]: 'LTS',
|
|
63
|
-
[jsQuestionNames.CI_SERVICE]: 'Other'
|
|
63
|
+
[jsQuestionNames.CI_SERVICE]: 'Other',
|
|
64
|
+
[jsQuestionNames.PROVIDE_EXAMPLE]: false
|
|
64
65
|
},
|
|
65
66
|
vcsHosts: {
|
|
66
67
|
GitHub: {
|
package/package.json
CHANGED
|
@@ -2,29 +2,22 @@
|
|
|
2
2
|
"name": "@form8ion/eslint-config-extender",
|
|
3
3
|
"description": "shareable ESLint config scaffolder for extending another config",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "
|
|
6
|
-
"files": [
|
|
7
|
-
"example.js",
|
|
8
|
-
"lib/"
|
|
9
|
-
],
|
|
5
|
+
"version": "5.0.1",
|
|
10
6
|
"engines": {
|
|
11
|
-
"node": "^
|
|
12
|
-
},
|
|
13
|
-
"publishConfig": {
|
|
14
|
-
"access": "public"
|
|
7
|
+
"node": "^16"
|
|
15
8
|
},
|
|
9
|
+
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
|
|
10
|
+
"repository": "form8ion/eslint-config-extender",
|
|
11
|
+
"bugs": "https://github.com/form8ion/eslint-config-extender/issues",
|
|
12
|
+
"homepage": "https://npm.im/@form8ion/eslint-config-extender",
|
|
16
13
|
"runkitExampleFilename": "./example.js",
|
|
17
|
-
"main": "lib/index.js",
|
|
18
|
-
"module": "lib/index.mjs",
|
|
19
14
|
"exports": {
|
|
20
15
|
"require": "./lib/index.js",
|
|
21
16
|
"import": "./lib/index.mjs"
|
|
22
17
|
},
|
|
18
|
+
"main": "lib/index.js",
|
|
19
|
+
"module": "lib/index.mjs",
|
|
23
20
|
"sideEffects": false,
|
|
24
|
-
"repository": "form8ion/eslint-config-extender",
|
|
25
|
-
"bugs": "https://github.com/form8ion/eslint-config-extender/issues",
|
|
26
|
-
"homepage": "https://npm.im/@form8ion/eslint-config-extender",
|
|
27
|
-
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
|
|
28
21
|
"scripts": {
|
|
29
22
|
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
|
|
30
23
|
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
|
|
@@ -33,14 +26,12 @@
|
|
|
33
26
|
"generate:md": "remark . --output",
|
|
34
27
|
"pregenerate:md": "run-s build",
|
|
35
28
|
"lint:sensitive": "ban",
|
|
36
|
-
"pretest:integration": "
|
|
29
|
+
"pretest:integration:base": "run-s build",
|
|
37
30
|
"lint:gherkin": "gherkin-lint",
|
|
38
31
|
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
|
|
39
32
|
"test:integration:base": "DEBUG=any cucumber-js test/integration --profile base",
|
|
40
33
|
"test:integration:debug": "DEBUG=test run-s test:integration",
|
|
41
|
-
"pretest:integration:wip": "preview",
|
|
42
34
|
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
|
|
43
|
-
"pretest:integration:wip:debug": "preview",
|
|
44
35
|
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
|
|
45
36
|
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
|
|
46
37
|
"clean": "rimraf ./lib",
|
|
@@ -55,15 +46,29 @@
|
|
|
55
46
|
"prepare": "husky install",
|
|
56
47
|
"lint:engines": "ls-engines"
|
|
57
48
|
},
|
|
49
|
+
"files": [
|
|
50
|
+
"example.js",
|
|
51
|
+
"lib/"
|
|
52
|
+
],
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@form8ion/javascript": "^9.0.0",
|
|
58
|
+
"@form8ion/javascript-core": "^7.0.0",
|
|
59
|
+
"@form8ion/project": "^14.0.0",
|
|
60
|
+
"deepmerge": "^4.2.2",
|
|
61
|
+
"write-yaml": "^1.0.0"
|
|
62
|
+
},
|
|
58
63
|
"devDependencies": {
|
|
59
64
|
"@babel/register": "7.18.9",
|
|
60
|
-
"@cucumber/cucumber": "8.5.
|
|
61
|
-
"@form8ion/babel-preset": "1.6.
|
|
62
|
-
"@form8ion/commitlint-config": "1.0.
|
|
63
|
-
"@form8ion/eslint-config": "5.0.
|
|
65
|
+
"@cucumber/cucumber": "8.5.3",
|
|
66
|
+
"@form8ion/babel-preset": "1.6.96",
|
|
67
|
+
"@form8ion/commitlint-config": "1.0.38",
|
|
68
|
+
"@form8ion/eslint-config": "5.0.9",
|
|
64
69
|
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
65
70
|
"@form8ion/eslint-config-mocha": "2.0.3",
|
|
66
|
-
"@form8ion/remark-lint-preset": "4.0.
|
|
71
|
+
"@form8ion/remark-lint-preset": "4.0.2",
|
|
67
72
|
"@travi/any": "2.1.5",
|
|
68
73
|
"@travi/github-scaffolder": "8.0.2",
|
|
69
74
|
"ban-sensitive-files": "1.9.18",
|
|
@@ -75,27 +80,19 @@
|
|
|
75
80
|
"gherkin-lint": "4.2.2",
|
|
76
81
|
"husky": "8.0.1",
|
|
77
82
|
"js-yaml": "4.1.0",
|
|
78
|
-
"lockfile-lint": "4.
|
|
83
|
+
"lockfile-lint": "4.8.0",
|
|
79
84
|
"ls-engines": "0.7.0",
|
|
80
85
|
"mocha": "10.0.0",
|
|
81
|
-
"mock-fs": "5.1.
|
|
86
|
+
"mock-fs": "5.1.4",
|
|
82
87
|
"nock": "13.2.9",
|
|
83
88
|
"npm-run-all": "4.1.5",
|
|
84
|
-
"package-preview": "4.0.0",
|
|
85
89
|
"remark-cli": "11.0.0",
|
|
86
90
|
"remark-toc": "8.0.1",
|
|
87
91
|
"remark-usage": "10.0.1",
|
|
88
92
|
"rimraf": "3.0.2",
|
|
89
|
-
"rollup": "2.
|
|
93
|
+
"rollup": "2.79.0",
|
|
90
94
|
"rollup-plugin-auto-external": "2.0.0",
|
|
91
95
|
"sinon": "14.0.0",
|
|
92
96
|
"testdouble": "3.16.6"
|
|
93
|
-
},
|
|
94
|
-
"dependencies": {
|
|
95
|
-
"@form8ion/javascript": "^7.0.0",
|
|
96
|
-
"@form8ion/javascript-core": "^7.0.0",
|
|
97
|
-
"@form8ion/project": "^13.2.0",
|
|
98
|
-
"deepmerge": "^4.2.2",
|
|
99
|
-
"write-yaml": "^1.0.0"
|
|
100
97
|
}
|
|
101
98
|
}
|