-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.82 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
77
78
79
80
81
{
"name": "ts-logs",
"description": "This package provide a skd for audit and manager logs in nodejs and express",
"version": "0.3.0",
"main": "index.js",
"types": "index.d.ts",
"author": "Alessandro Dev",
"scripts": {
"test": "jest --runInBand --silent",
"test:e2e": "env-cmd jest --runInBand --forceExit --config jest.e2e.config.ts",
"test:verbose": "jest --runInBand",
"prebuild": "rimraf ./dist && npm run check:circular-deps && ./clear.sh",
"postbuild": "cp -r ./dist/* ./",
"build": "tsc -p tsconfig.lib.json",
"prepublish": "npm run build",
"postpublish": "./clear.sh",
"check:circular-deps": "madge --circular --extensions ts ./lib"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^22.10.10",
"env-cmd": "^10.1.0",
"jest": "^29.4.1",
"madge": "^6.0.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.735.0",
"@types/express": "^5.0.0",
"axios": "^1.7.9",
"express": "^4.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/ts-logs.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/ts-logs/issues"
},
"homepage": "https://github.com/4lessandrodev/ts-logs",
"license": "MIT",
"engines": {
"node": ">=14.x <=23.x"
},
"keywords": [
"Logs",
"Logging",
"Audit Log",
"Log File",
"Debug",
"Persist Log",
"Express Logs",
"Publish Log",
"Log to AWS",
"Log to S3",
"Axios Log"
],
"files": [
"core/*",
"utils/*",
"index.js",
"index.d.ts",
"types.d.ts",
"types.js",
"package.json",
"index.d.ts.map",
"index.js.map",
"types.d.ts.map",
"types.js.map",
"README.md"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.735.0",
"axios": "^1.7.9",
"mongodb": "^6.12.0"
}
}