metalog 3.1.13 → 3.1.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.
Files changed (1) hide show
  1. package/package.json +16 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metalog",
3
- "version": "3.1.13",
3
+ "version": "3.1.14",
4
4
  "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
5
5
  "description": "Logger for Metarhia",
6
6
  "license": "MIT",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/metarhia/metalog"
27
+ "url": "git+https://github.com/metarhia/metalog.git"
28
28
  },
29
29
  "bugs": {
30
30
  "url": "https://github.com/metarhia/metalog/issues",
@@ -38,29 +38,31 @@
38
38
  "main": "metalog.js",
39
39
  "types": "metalog.d.ts",
40
40
  "readmeFilename": "README.md",
41
- "files": ["types/", "metalog.d.ts"],
41
+ "files": [
42
+ "types/",
43
+ "metalog.d.ts"
44
+ ],
42
45
  "scripts": {
43
- "test": "npm run lint && npm run types && metatests test/",
46
+ "test": "npm run lint && npm run types && node --test",
44
47
  "types": "tsc -p tsconfig.json",
45
48
  "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\"",
46
49
  "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.ts\""
47
50
  },
48
51
  "engines": {
49
- "node": "18 || 20"
52
+ "node": "18 || 20 || 21"
50
53
  },
51
54
  "dependencies": {
52
55
  "concolor": "^1.1.0",
53
- "metautil": "^3.15.0"
56
+ "metautil": "^5.0.0"
54
57
  },
55
58
  "devDependencies": {
56
- "@types/node": "^20.4.1",
57
- "eslint": "^8.44.0",
58
- "eslint-config-metarhia": "^8.2.0",
59
- "eslint-config-prettier": "^9.0.0",
60
- "eslint-plugin-import": "^2.27.5",
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",
61
64
  "eslint-plugin-prettier": "^5.0.0-alpha.2",
62
- "metatests": "^0.8.2",
63
- "prettier": "^3.0.0",
64
- "typescript": "^5.1.6"
65
+ "prettier": "^3.1.1",
66
+ "typescript": "^5.3.3"
65
67
  }
66
68
  }