-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 896 Bytes
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
{
"name": "batch-stdout",
"version": "0.2.2",
"description": "Batch stdout write to efficiently log",
"main": "dist/index.js",
"scripts": {
"test": "node --inspect=9229 ./node_modules/jest/bin/jest.js --runInBand --detectOpenHandles",
"benchmark": "node -r ts-node/register src/__tests__/benchmark.ts",
"build": "tsc",
"publish:latest": "npm run build && npm publish --access public"
},
"author": "OkayestDev",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"jest": "^30.2.0",
"pino": "^10.1.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"logger",
"batch",
"stdout",
"logging"
],
"dependencies": {
"sonic-boom": "^4.2.0"
}
}