-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"version": "1.0.1",
"name": "@20syldev/logger.ts",
"description": "A minimalist Node.js module to generate, format, and serve structured logs as JSON.",
"main": "dist/logger.js",
"types": "dist/logger.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "node --import tsx tests/test.ts",
"test:serve": "node --import tsx tests/serve.ts",
"format": "prettier --write src/ tests/ && eslint src/ tests/"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/20syldev/logger.ts.git"
},
"keywords": [
"logger",
"logs",
"http",
"json",
"server",
"monitor"
],
"author": "Sylvain L.",
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/20syldev/logger.ts/issues"
},
"homepage": "https://github.com/20syldev/logger.ts"
}