@mlaursen/eslint-config 1.9.0 → 2.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/{index.js → index.cjs} +0 -0
- package/package.json +22 -16
package/{index.js → index.cjs}
RENAMED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mlaursen/eslint-config",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.0.0",
|
|
4
5
|
"description": "An eslint config used by mlaursen for most projects.",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"repository": "https://github.com/mlaursen/eslint-config.git",
|
|
7
8
|
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
|
|
8
9
|
"license": "MIT",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"release": "yarn run-script scripts/release.ts"
|
|
10
|
+
"engines": {
|
|
11
|
+
"pnpm": ">=7",
|
|
12
|
+
"node": ">=16"
|
|
13
13
|
},
|
|
14
|
+
"engineStrict": true,
|
|
14
15
|
"files": [
|
|
15
|
-
"index.
|
|
16
|
+
"index.cjs"
|
|
16
17
|
],
|
|
17
18
|
"bugs": {
|
|
18
19
|
"url": "https://github.com/mlaursen/eslint-config/issues"
|
|
@@ -22,28 +23,28 @@
|
|
|
22
23
|
"typescript"
|
|
23
24
|
],
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
26
|
-
"@typescript-eslint/parser": "^5.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.43.0",
|
|
27
28
|
"confusing-browser-globals": "^1.0.11",
|
|
28
29
|
"eslint-config-prettier": "^8.5.0",
|
|
29
30
|
"eslint-plugin-import": "^2.26.0",
|
|
30
|
-
"eslint-plugin-jest": "^27.1.
|
|
31
|
+
"eslint-plugin-jest": "^27.1.5",
|
|
31
32
|
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
32
|
-
"eslint-plugin-react": "^7.31.
|
|
33
|
+
"eslint-plugin-react": "^7.31.11",
|
|
33
34
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
34
35
|
"eslint-plugin-tsdoc": "^0.2.17"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
38
|
"@mlaursen/changelog-preset": "^1.1.0",
|
|
38
39
|
"@octokit/core": "^4.1.0",
|
|
39
|
-
"@types/inquirer": "^
|
|
40
|
-
"@types/node": "^18.11.
|
|
40
|
+
"@types/inquirer": "^9.0.3",
|
|
41
|
+
"@types/node": "^18.11.9",
|
|
41
42
|
"dotenv": "^16.0.3",
|
|
42
|
-
"eslint": "^8.
|
|
43
|
-
"inquirer": "^
|
|
43
|
+
"eslint": "^8.28.0",
|
|
44
|
+
"inquirer": "^9.1.4",
|
|
44
45
|
"standard-version": "^9.5.0",
|
|
45
46
|
"ts-node": "^10.9.1",
|
|
46
|
-
"typescript": "^4.
|
|
47
|
+
"typescript": "^4.9.3"
|
|
47
48
|
},
|
|
48
49
|
"peerDependencies": {
|
|
49
50
|
"eslint": ">= 8.0.0",
|
|
@@ -59,5 +60,10 @@
|
|
|
59
60
|
},
|
|
60
61
|
"publishConfig": {
|
|
61
62
|
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"test": "eslint -c index.cjs \"test/**/*.{js,jsx,ts,tsx}\"",
|
|
66
|
+
"run-script": "ts-node -T -P tsconfig.json",
|
|
67
|
+
"release": "yarn run-script scripts/release.ts"
|
|
62
68
|
}
|
|
63
|
-
}
|
|
69
|
+
}
|