-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 KB
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": "@dyihoon90/glogging",
"version": "4.0.3",
"description": "HTTP request logging middleware & transaction function decorator for express, using winston",
"main": "dist/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky",
"test": "jest -i",
"prepublishOnly": "npm run build",
"build": "tsc --project tsconfig.release.json",
"example": "ts-node examples/example.ts",
"example-server": "ts-node examples/middleware.example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyihoon90/glogging.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dyihoon90/glogging/issues"
},
"homepage": "https://github.com/dyihoon90/glogging#readme",
"dependencies": {
"@js-joda/core": "^5.6.3",
"@types/express": "^5.0.0",
"is-secret": "^1.2.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"serialize-error": "^8.1.0",
"uuid": "^10.0.0",
"winston": "^3.17.0"
},
"overrides": {
"winston": {
"async": "^3.2.6"
},
"jake": {
"async": "^3.2.6"
}
},
"devDependencies": {
"@types/is-secret": "^1.2.2",
"@types/jest": "^29.5.12",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash": "^4.17.7",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^5.0.1",
"husky": "^9.1.2",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"winston-transport": "^4.7.1"
},
"keywords": [
"express",
"http",
"logger",
"middleware",
"transaction",
"decorator",
"winston"
]
}