@heavybit/logger-ts 3.0.0

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.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@heavybit/logger-ts",
3
+ "version": "3.0.0",
4
+ "description": "A comprehensive TypeScript logging package for Express.js with AOP support, request/response logging middleware, stdout and file logging",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "author": "Nicholas Kute",
8
+ "license": "MIT",
9
+ "keywords": [
10
+ "monitoring",
11
+ "logger",
12
+ "logging",
13
+ "middleware",
14
+ "aop",
15
+ "typescript",
16
+ "express",
17
+ "winston"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "scripts": {
23
+ "build": "tsc -p tsconfig.build.json",
24
+ "build:watch": "tsc -p tsconfig.build.json --watch",
25
+ "test": "cross-env NODE_ENV=test jest",
26
+ "test:watch": "cross-env NODE_ENV=test jest --watch",
27
+ "test:coverage": "cross-env NODE_ENV=test jest --coverage",
28
+ "lint": "eslint src/**/*.ts",
29
+ "lint:fix": "eslint src/**/*.ts --fix",
30
+ "prepublishOnly": "npm run build",
31
+ "clean": "rm -rf dist"
32
+ },
33
+ "files": [
34
+ "dist/**/*"
35
+ ],
36
+ "engines": {
37
+ "node": ">=16.0.0"
38
+ },
39
+ "dependencies": {
40
+ "dotenv": "^16.4.5",
41
+ "uuid": "^10.0.0",
42
+ "winston": "^3.13.1",
43
+ "winston-daily-rotate-file": "^5.0.0"
44
+ },
45
+ "peerDependencies": {
46
+ "express": "^4.18.0 || ^5.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/express": "^4.17.21",
50
+ "@types/jest": "^29.5.12",
51
+ "@types/node": "^20.14.10",
52
+ "@types/uuid": "^10.0.0",
53
+ "@typescript-eslint/eslint-plugin": "^7.16.0",
54
+ "@typescript-eslint/parser": "^7.16.0",
55
+ "cross-env": "^7.0.3",
56
+ "eslint": "^8.56.0",
57
+ "express": "^4.19.2",
58
+ "jest": "^29.7.0",
59
+ "node-mocks-http": "^1.15.1",
60
+ "ts-jest": "^29.2.2",
61
+ "typescript": "^5.5.3"
62
+ }
63
+ }