forked from ekino/node-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
{
"name": "@ekino/logger",
"description": "A Lightweight logger that combines debug namespacing capabilities with winston levels and multioutput",
"homepage": "https://github.com/ekino/node-logger",
"license": "MIT",
"version": "2.1.1",
"tags": [
"logger",
"lightweight",
"namespaces",
"debug",
"multioutput",
"logging",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/ekino/node-logger.git"
},
"maintainers": [
{
"name": "Ekino"
}
],
"type": "module",
"main": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"exports": {
".": {
"import": {
"default": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
},
"require": {
"default": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts"
}
}
},
"files": [
"/lib"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"fast-json-stringify": "6.x",
"prettyoutput": "1.x"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ekino/logger": "2.1.1",
"@jonahsnider/benchmark": "5.1.1",
"@types/node": "22.10.0",
"@vitest/coverage-v8": "2.1.6",
"commitlint": "19.6.0",
"pino": "9.5.0",
"typescript": "5.7.2",
"vitest": "2.1.6",
"winston": "3.17.0"
},
"scripts": {
"lint": "biome check --write",
"check": "biome check",
"build": "node scripts/build.js",
"prepublishOnly": "yarn build",
"test": "vitest --run test/**/*.ts",
"coverage": "vitest run --coverage",
"version": "echo ${npm_package_version}",
"examples": "./examples/exec.sh",
"examples-esm": "./examples/esm/exec.sh",
"examples-cjs": "./examples/cjs/exec.sh",
"benchmark": "node ./benchmarks/basic.js",
"postinstall": "git config core.hooksPath ./.githooks || true"
},
"packageManager": "[email protected]"
}