@breautek/storm 5.0.1-beta.2 → 5.0.1-beta.3
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/.eslintrc.js +4 -6
- package/package.json +16 -15
package/.eslintrc.js
CHANGED
|
@@ -18,8 +18,8 @@ module.exports = {
|
|
|
18
18
|
"extends": [
|
|
19
19
|
"eslint:recommended",
|
|
20
20
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
21
|
-
"plugin:@typescript-eslint/recommended"
|
|
22
|
-
|
|
21
|
+
"plugin:@typescript-eslint/recommended",
|
|
22
|
+
"plugin:@totalpave/recommendedTS"
|
|
23
23
|
],
|
|
24
24
|
"parser": "@typescript-eslint/parser",
|
|
25
25
|
"parserOptions": {
|
|
@@ -28,16 +28,14 @@ module.exports = {
|
|
|
28
28
|
"tsconfigRootDir": __dirname
|
|
29
29
|
},
|
|
30
30
|
"plugins": [
|
|
31
|
-
"@typescript-eslint"
|
|
32
|
-
|
|
31
|
+
"@typescript-eslint",
|
|
32
|
+
"@totalpave"
|
|
33
33
|
],
|
|
34
34
|
"env": {
|
|
35
35
|
"node": true,
|
|
36
36
|
"jasmine": true
|
|
37
37
|
},
|
|
38
38
|
"rules": {
|
|
39
|
-
"@typescript-eslint/no-var-requires": "off",
|
|
40
|
-
"@typescript-eslint/triple-slash-reference": "off",
|
|
41
39
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
42
40
|
"@typescript-eslint/no-explicit-any": "off",
|
|
43
41
|
"@typescript-eslint/no-inferrable-types": "off",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breautek/storm",
|
|
3
|
-
"version": "5.0.1-beta.
|
|
3
|
+
"version": "5.0.1-beta.3",
|
|
4
4
|
"description": "Object-Oriented REST API framework",
|
|
5
5
|
"main": "lib/api.js",
|
|
6
6
|
"types": "lib/api.d.ts",
|
|
@@ -46,22 +46,22 @@
|
|
|
46
46
|
"@arashi/token": "1.0.1",
|
|
47
47
|
"@breautek/merge-change": "1.0.0",
|
|
48
48
|
"@types/body-parser": "1.19.2",
|
|
49
|
-
"@types/express": "4.17.
|
|
49
|
+
"@types/express": "4.17.17",
|
|
50
50
|
"@types/formidable": "1.2.3",
|
|
51
51
|
"@types/jsonwebtoken": "9.0.1",
|
|
52
52
|
"@types/mysql": "2.15.21",
|
|
53
|
-
"@types/node": "18.
|
|
54
|
-
"@types/uuid": "9.0.
|
|
53
|
+
"@types/node": "18.15.0",
|
|
54
|
+
"@types/uuid": "9.0.1",
|
|
55
55
|
"ajv": "8.12.0",
|
|
56
|
-
"body-parser": "1.20.
|
|
56
|
+
"body-parser": "1.20.2",
|
|
57
57
|
"commander": "10.0.0",
|
|
58
58
|
"express": "4.18.2",
|
|
59
59
|
"form-data": "4.0.0",
|
|
60
60
|
"formidable": "1.2.2",
|
|
61
61
|
"jsonwebtoken": "9.0.0",
|
|
62
62
|
"mysql": "2.18.1",
|
|
63
|
-
"sql-formatter": "12.
|
|
64
|
-
"tslib": "2.
|
|
63
|
+
"sql-formatter": "12.1.3",
|
|
64
|
+
"tslib": "2.5.0",
|
|
65
65
|
"uuid": "9.0.0"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
@@ -69,17 +69,18 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@arashi/logger": "2.1.0",
|
|
72
|
-
"@
|
|
73
|
-
"@
|
|
74
|
-
"@typescript-eslint/
|
|
72
|
+
"@totalpave/eslint-plugin": "6.0.9",
|
|
73
|
+
"@types/jest": "29.4.0",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "5.54.1",
|
|
75
|
+
"@typescript-eslint/parser": "5.54.1",
|
|
75
76
|
"auto-changelog": "2.4.0",
|
|
76
|
-
"eslint": "8.
|
|
77
|
-
"jest": "29.
|
|
78
|
-
"jest-jasmine2": "29.
|
|
77
|
+
"eslint": "8.36.0",
|
|
78
|
+
"jest": "29.5.0",
|
|
79
|
+
"jest-jasmine2": "29.5.0",
|
|
79
80
|
"ts-jest": "29.0.5",
|
|
80
81
|
"ts-node": "10.9.1",
|
|
81
|
-
"typedoc": "0.23.
|
|
82
|
+
"typedoc": "0.23.26",
|
|
82
83
|
"typedoc-plugin-markdown": "3.14.0",
|
|
83
|
-
"typescript": "4.9.
|
|
84
|
+
"typescript": "4.9.5"
|
|
84
85
|
}
|
|
85
86
|
}
|