@labeg/code-style 4.0.6 → 4.0.11
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/.editorconfig +0 -0
- package/.prettierrc +0 -0
- package/.remarkrc +0 -0
- package/LICENSE +0 -0
- package/README.md +0 -0
- package/package.json +21 -13
package/.editorconfig
CHANGED
|
File without changes
|
package/.prettierrc
CHANGED
|
File without changes
|
package/.remarkrc
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,27 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@labeg/code-style",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"version": "4.0.11",
|
|
4
|
+
"author": "Eugene Labutin",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/LabEG/code-style#readme",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/LabEG/code-style.git"
|
|
10
10
|
},
|
|
11
|
-
"author": "Evgeniy Labutin ",
|
|
12
|
-
"license": "MIT",
|
|
13
11
|
"bugs": {
|
|
14
12
|
"url": "https://github.com/LabEG/code-style/issues"
|
|
15
13
|
},
|
|
16
|
-
"
|
|
14
|
+
"scripts": {
|
|
15
|
+
"release": "standard-version",
|
|
16
|
+
"prepare": "husky install"
|
|
17
|
+
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
19
|
-
"@typescript-eslint/parser": "^7.
|
|
20
|
-
"eslint": "^9.
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
20
|
+
"@typescript-eslint/parser": "^7.8.0",
|
|
21
|
+
"eslint": "^9.2.0",
|
|
21
22
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
22
23
|
"eslint-plugin-react": "^7.34.1",
|
|
23
|
-
"eslint-plugin-react-hooks": "^4.6.
|
|
24
|
-
"@stylistic/eslint-plugin": "^1.
|
|
25
|
-
"@stylistic/eslint-plugin-migrate": "^1.
|
|
24
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
25
|
+
"@stylistic/eslint-plugin": "^2.1.0",
|
|
26
|
+
"@stylistic/eslint-plugin-migrate": "^2.1.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@commitlint/cli": "^19.3.0",
|
|
30
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
31
|
+
"husky": "^9.0.11",
|
|
32
|
+
"lint-staged": "^15.2.2",
|
|
33
|
+
"standard-version": "^9.5.0"
|
|
26
34
|
}
|
|
27
35
|
}
|