-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "@starbemtech/star-logger",
"description": "A TypeScript logging module using Winston and MongoDB, enabling easy integration of logging functionalities into your Node.js microservices. It offers configurable log levels, custom formats, and saves logs to MongoDB, facilitating centralized logging and easy access to logs.",
"version": "1.0.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"root": true,
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --passWithNoTests",
"lint": "eslint --fix . --ignore-pattern dist/",
"lint:check": "eslint . --ignore-pattern dist/",
"lint:format": "prettier --write .",
"lint:format:check": "prettier --check .",
"coverage": "jest --watchAll --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starbem/star-logger"
},
"bugs": {
"url": "https://github.com/starbem/star-logger/issues"
},
"keywords": [
"javascript",
"typescript",
"logs",
"logger"
],
"author": "Julio Augusto <julio.sousa@starbem.app>",
"dependencies": {
"winston": "^3.14.2",
"winston-mongodb": "^5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.13",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.0",
"typescript-eslint": "^8.6.0"
}
}