-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "pino-seq",
"version": "1.2.0",
"description": "A stream that sends Pino log events to Seq",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"test:cli": "node ./test/cli_tests.js | node ./cli.js --property application='pino-seq'",
"start": "node ./example/example.js",
"start:ts": "ts-node ./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": {
"@types/pino": "^5.8.6",
"mocha": "^7.1.1",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
},
"dependencies": {
"commander": "^2.20.0",
"seq-logging": "^2.2.0",
"split2": "^3.1.1",
"pino": "^6.7.0"
},
"engines": {
"node": ">=14.0.0"
}
}