-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "@ajayos/nodelogger",
"version": "1.0.9",
"description": "This is a logging module that allows the user to log messages with different severity levels. The module uses the Winston logging library and allows the user to configure various options for the log files.",
"main": "index.js",
"scripts": {
"test": "node example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajayos/nodelogger.git"
},
"keywords": [
"nodelogger",
"node",
"js",
"ajay",
"logger",
"log"
],
"author": "Ajay o s",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Ajayos/nodelogger/issues"
},
"homepage": "https://github.com/Ajayos/nodelogger#readme",
"dependencies": {
"@ajayos/nodelogger": "file:",
"color": "^4.2.3",
"colors": "^1.4.0",
"crypto": "^1.0.1",
"fs": "^0.0.1-security",
"moment": "^2.29.4",
"path": "^0.12.7",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/node": "^22.4.1"
},
"types": "./index.d.ts"
}