-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.6 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "euphoria-logger",
"version": "1.1.6",
"description": "A simple Node.js lightweight logger that supports native colors, multi-level logging and file-based logging.",
"main": "./lib/index.cjs",
"type": "module",
"exports": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.14.7",
"babel-plugin-transform-rewrite-imports": "^1.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"src",
"lib",
"docs",
"LICENSE",
"README.md"
],
"scripts": {
"build": "babel src --out-dir lib --extensions \".js,.jsx,.ts,.tsx\" --out-file-extension \".cjs\""
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/TehPigYT/euphoria-logger.git"
},
"keywords": [
"logger",
"logging",
"debug",
"console",
"logs",
"file-logs",
"levels",
"native-colors",
"emojis",
"format",
"utils",
"custom-logger",
"nodejs",
"javascript",
"typescript",
"management",
"formatter",
"output",
"handler",
"rotation",
"filter",
"utility",
"library",
"package",
"system",
"colors",
"webhooks",
"discord",
"slack",
"telegram",
"guilded",
"lightweight",
"fast"
],
"author": "TehPigYT",
"bugs": {
"url": "https://github.com/TehPigYT/euphoria-logger/issues"
},
"homepage": "https://github.com/TehPigYT/euphoria-logger#readme"
}