@emartech/json-logger 8.0.3 → 8.1.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/package.json +15 -17
- package/renovate.json +34 -0
package/package.json
CHANGED
|
@@ -16,9 +16,14 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"author": "Emartech",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/emartech/json-logger-js.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/emartech/json-logger-js/issues"
|
|
21
25
|
},
|
|
26
|
+
"homepage": "https://github.com/emartech/json-logger-js#readme",
|
|
22
27
|
"license": "MIT",
|
|
23
28
|
"keywords": [
|
|
24
29
|
"log",
|
|
@@ -26,6 +31,12 @@
|
|
|
26
31
|
"debug",
|
|
27
32
|
"json"
|
|
28
33
|
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=14"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"lodash": "^4.17.21"
|
|
39
|
+
},
|
|
29
40
|
"devDependencies": {
|
|
30
41
|
"@types/chai": "4.3.3",
|
|
31
42
|
"@types/lodash": "4.14.198",
|
|
@@ -35,7 +46,7 @@
|
|
|
35
46
|
"@types/sinon-chai": "3.2.8",
|
|
36
47
|
"@typescript-eslint/eslint-plugin": "5.38.1",
|
|
37
48
|
"@typescript-eslint/parser": "5.38.1",
|
|
38
|
-
"axios": "0.
|
|
49
|
+
"axios": "0.30.0",
|
|
39
50
|
"chai": "4.3.6",
|
|
40
51
|
"eslint": "8.24.0",
|
|
41
52
|
"eslint-config-emarsys": "5.1.0",
|
|
@@ -43,9 +54,7 @@
|
|
|
43
54
|
"eslint-plugin-no-only-tests": "3.0.0",
|
|
44
55
|
"eslint-plugin-prettier": "4.2.1",
|
|
45
56
|
"eslint-plugin-security": "1.5.0",
|
|
46
|
-
"install": "0.13.0",
|
|
47
57
|
"mocha": "10.0.0",
|
|
48
|
-
"npm": "8.19.2",
|
|
49
58
|
"prettier": "2.7.1",
|
|
50
59
|
"semantic-release": "19.0.5",
|
|
51
60
|
"sinon": "14.0.0",
|
|
@@ -53,16 +62,5 @@
|
|
|
53
62
|
"ts-node": "10.9.1",
|
|
54
63
|
"typescript": "4.8.4"
|
|
55
64
|
},
|
|
56
|
-
"
|
|
57
|
-
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/emartech/json-logger-js.git"
|
|
59
|
-
},
|
|
60
|
-
"bugs": {
|
|
61
|
-
"url": "https://github.com/emartech/json-logger-js/issues"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/emartech/json-logger-js#readme",
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"lodash": "4.17.21"
|
|
66
|
-
},
|
|
67
|
-
"version": "8.0.3"
|
|
65
|
+
"version": "8.1.0"
|
|
68
66
|
}
|
package/renovate.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
+
"extends": [
|
|
4
|
+
"config:best-practices",
|
|
5
|
+
":enableVulnerabilityAlerts",
|
|
6
|
+
":pinOnlyDevDependencies",
|
|
7
|
+
":semanticCommits",
|
|
8
|
+
":separateMultipleMajorReleases",
|
|
9
|
+
"group:allNonMajor"
|
|
10
|
+
],
|
|
11
|
+
"dependencyDashboardLabels": ["dependencies"],
|
|
12
|
+
"labels": ["dependencies"],
|
|
13
|
+
"lockFileMaintenance": {
|
|
14
|
+
"enabled": true,
|
|
15
|
+
"schedule": ["on the 1-7 day on Sunday"]
|
|
16
|
+
},
|
|
17
|
+
"packageRules": [
|
|
18
|
+
{
|
|
19
|
+
"groupName": "axios",
|
|
20
|
+
"matchPackageNames": ["axios"],
|
|
21
|
+
"matchUpdateTypes": ["minor"]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"groupName": "typescript",
|
|
25
|
+
"matchPackageNames": ["typescript"],
|
|
26
|
+
"matchUpdateTypes": ["minor"]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"matchPackageNames": ["axios", "typescript"],
|
|
30
|
+
"separateMultipleMinor": true
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"schedule": ["on the 1-7 day on Sunday"]
|
|
34
|
+
}
|