@alextheman/eslint-plugin 1.0.12 → 1.0.14
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -4
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/eslint-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,15 +13,18 @@
|
|
|
13
13
|
"lint": "ESLINT_MODE=lint eslint 'src/**/*.ts' '__tests__/**/*.ts' && prettier --check --parser typescript 'src/**/*.ts' '__tests__/**/*.ts'",
|
|
14
14
|
"update-dependencies": "npx npm-check-updates -u && npm install",
|
|
15
15
|
"prepare": "husky",
|
|
16
|
-
"build": "tsup"
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"change-major": "npm version major -m \"Change version number to v%s\"",
|
|
18
|
+
"change-minor": "npm version minor -m \"Change version number to v%s\"",
|
|
19
|
+
"change-patch": "npm version patch -m \"Change version number to v%s\""
|
|
17
20
|
},
|
|
18
21
|
"keywords": [],
|
|
19
22
|
"author": "",
|
|
20
23
|
"license": "ISC",
|
|
21
24
|
"type": "module",
|
|
22
25
|
"peerDependencies": {
|
|
23
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
24
|
-
"@typescript-eslint/parser": "^8.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^8.37.0",
|
|
27
|
+
"@typescript-eslint/parser": "^8.37.0",
|
|
25
28
|
"eslint": "^9.31.0",
|
|
26
29
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
27
30
|
"eslint-plugin-import": "^2.32.0"
|