metalog 3.1.14 → 3.1.16

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/package.json +11 -14
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017-2023 Metarhia
3
+ Copyright (c) 2017-2025 Metarhia
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -31,6 +31,6 @@ await logger.close();
31
31
 
32
32
  ## License & Contributors
33
33
 
34
- Copyright (c) 2017-2023 [Metarhia contributors](https://github.com/metarhia/metalog/graphs/contributors).
34
+ Copyright (c) 2017-2025 [Metarhia contributors](https://github.com/metarhia/metalog/graphs/contributors).
35
35
  Metalog is [MIT licensed](./LICENSE).\
36
36
  Metalog is a part of [Metarhia](https://github.com/metarhia) technology stack.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metalog",
3
- "version": "3.1.14",
3
+ "version": "3.1.16",
4
4
  "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
5
5
  "description": "Logger for Metarhia",
6
6
  "license": "MIT",
@@ -45,24 +45,21 @@
45
45
  "scripts": {
46
46
  "test": "npm run lint && npm run types && node --test",
47
47
  "types": "tsc -p tsconfig.json",
48
- "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
49
- "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
48
+ "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
49
+ "fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
50
50
  },
51
51
  "engines": {
52
- "node": "18 || 20 || 21"
52
+ "node": "18 || 20 || 21 || 22 || 23 || 24"
53
53
  },
54
54
  "dependencies": {
55
- "concolor": "^1.1.0",
56
- "metautil": "^5.0.0"
55
+ "concolor": "^1.1.2",
56
+ "metautil": "^5.2.5"
57
57
  },
58
58
  "devDependencies": {
59
- "@types/node": "^20.10.4",
60
- "eslint": "^8.55.0",
61
- "eslint-config-metarhia": "^8.2.2",
62
- "eslint-config-prettier": "^9.1.0",
63
- "eslint-plugin-import": "^2.29.0",
64
- "eslint-plugin-prettier": "^5.0.0-alpha.2",
65
- "prettier": "^3.1.1",
66
- "typescript": "^5.3.3"
59
+ "@types/node": "^22.15.21",
60
+ "eslint": "^9.27.0",
61
+ "eslint-config-metarhia": "^9.1.1",
62
+ "prettier": "^3.5.3",
63
+ "typescript": "^5.8.3"
67
64
  }
68
65
  }