-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "metalog",
"version": "3.1.15",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "Logger for Metarhia",
"license": "MIT",
"keywords": [
"logger",
"log",
"logging",
"metarhia",
"impress",
"server",
"jstp",
"globalstorege",
"highload",
"cloud",
"api",
"node",
"nodejs",
"application-server",
"tools",
"console"
],
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metalog.git"
},
"bugs": {
"url": "https://github.com/metarhia/metalog/issues",
"email": "timur.shemsedinov@gmail.com"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"main": "metalog.js",
"types": "metalog.d.ts",
"readmeFilename": "README.md",
"files": [
"types/",
"metalog.d.ts"
],
"scripts": {
"test": "npm run lint && npm run types && node --test",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"engines": {
"node": "18 || 20 || 21 || 22"
},
"dependencies": {
"concolor": "^1.1.0",
"metautil": "^5.2.3"
},
"devDependencies": {
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"eslint-config-metarhia": "^9.0.4",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}