forked from datalust/pino-seq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1005 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1005 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "pino-seq",
"version": "2.0.0",
"description": "A stream that sends Pino log events to Seq",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"test": "mocha",
"start": "node ./example/example.js",
"start:ts": "tsx ./example/example.ts"
},
"bin": {
"pino-seq": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datalust/pino-seq.git"
},
"keywords": [
"pino",
"seq"
],
"author": "Datalust, Simi Hartstein, and contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/datalust/pino-seq/issues"
},
"homepage": "https://github.com/datalust/pino-seq#readme",
"devDependencies": {
"mocha": "^11.2.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"commander": "^13.1.0",
"seq-logging": "^3.0.0",
"split2": "^4.2.0"
},
"peerDependencies": {
"pino": "9.x"
},
"engines": {
"node": ">=18.0.0"
}
}