@form8ion/eslint-config-extender 1.1.19 → 2.0.0-alpha.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/package.json +15 -12
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": "
|
|
5
|
+
"version": "2.0.0-alpha.1",
|
|
6
6
|
"files": [
|
|
7
7
|
"example.js",
|
|
8
8
|
"lib/"
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"runkitExampleFilename": "./example.js",
|
|
14
14
|
"main": "lib/index.cjs.js",
|
|
15
15
|
"module": "lib/index.es.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
"require": "./lib/index.cjs.js",
|
|
18
|
+
"import": "./lib/index.es.js"
|
|
19
|
+
},
|
|
16
20
|
"sideEffects": false,
|
|
17
21
|
"repository": "form8ion/eslint-config-extender",
|
|
18
22
|
"bugs": "https://github.com/form8ion/eslint-config-extender/issues",
|
|
@@ -42,51 +46,50 @@
|
|
|
42
46
|
"build:js": "rollup --config",
|
|
43
47
|
"watch": "run-s 'build:js -- --watch'",
|
|
44
48
|
"prepack": "run-s build",
|
|
45
|
-
"test:unit": "
|
|
46
|
-
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
49
|
+
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
|
|
47
50
|
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
|
|
48
51
|
"lint:peer": "npm ls >/dev/null",
|
|
49
52
|
"prepare": "husky install"
|
|
50
53
|
},
|
|
51
54
|
"devDependencies": {
|
|
52
55
|
"@babel/register": "7.17.7",
|
|
53
|
-
"@cucumber/cucumber": "8.
|
|
56
|
+
"@cucumber/cucumber": "8.2.0",
|
|
54
57
|
"@form8ion/babel-preset": "1.6.87",
|
|
55
58
|
"@form8ion/commitlint-config": "1.0.31",
|
|
56
|
-
"@form8ion/eslint-config": "5.0.
|
|
59
|
+
"@form8ion/eslint-config": "5.0.2",
|
|
57
60
|
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
58
61
|
"@form8ion/eslint-config-mocha": "2.0.1",
|
|
59
|
-
"@form8ion/remark-lint-preset": "
|
|
62
|
+
"@form8ion/remark-lint-preset": "4.0.0",
|
|
60
63
|
"@travi/any": "2.0.20",
|
|
61
64
|
"@travi/github-scaffolder": "8.0.1",
|
|
62
65
|
"ban-sensitive-files": "1.9.18",
|
|
66
|
+
"c8": "7.11.2",
|
|
63
67
|
"chai": "4.3.6",
|
|
64
|
-
"
|
|
68
|
+
"cross-env": "7.0.3",
|
|
65
69
|
"cz-conventional-changelog": "3.3.0",
|
|
66
70
|
"debug": "4.3.4",
|
|
67
71
|
"gherkin-lint": "4.2.2",
|
|
68
|
-
"husky": "
|
|
72
|
+
"husky": "8.0.1",
|
|
69
73
|
"js-yaml": "4.1.0",
|
|
70
74
|
"lockfile-lint": "4.7.4",
|
|
71
75
|
"mocha": "10.0.0",
|
|
72
76
|
"mock-fs": "5.1.2",
|
|
73
77
|
"nock": "13.2.4",
|
|
74
78
|
"npm-run-all": "4.1.5",
|
|
75
|
-
"nyc": "15.1.0",
|
|
76
79
|
"package-preview": "4.0.0",
|
|
77
80
|
"remark-cli": "10.0.1",
|
|
78
81
|
"remark-toc": "8.0.1",
|
|
79
82
|
"remark-usage": "10.0.1",
|
|
80
83
|
"rimraf": "3.0.2",
|
|
81
|
-
"rollup": "2.
|
|
84
|
+
"rollup": "2.72.1",
|
|
82
85
|
"rollup-plugin-auto-external": "2.0.0",
|
|
83
|
-
"sinon": "
|
|
86
|
+
"sinon": "14.0.0",
|
|
84
87
|
"testdouble": "3.16.5"
|
|
85
88
|
},
|
|
86
89
|
"dependencies": {
|
|
90
|
+
"@form8ion/javascript": "^4.0.0",
|
|
87
91
|
"@form8ion/javascript-core": "^5.0.0",
|
|
88
92
|
"@form8ion/project": "^12.0.0",
|
|
89
|
-
"@form8ion/javascript": "^4.0.0",
|
|
90
93
|
"deepmerge": "^4.2.2",
|
|
91
94
|
"write-yaml": "^1.0.0"
|
|
92
95
|
}
|