-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "bunyan-seq",
"version": "1.0.0",
"description": "A Bunyan stream that sends log events to Seq",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"start": "node ./example/example.js",
"test:cli": "node ./example/example.js | node ./cli.js --property test-property=bunyanTestCli",
"lint": "npx prettier --write \"./**/*.js\"",
"typecheck": "tsc --noEmit",
"start:ts": "npm run build:example && node ./example/usage.js",
"build:example": "tsc"
},
"bin": {
"bunyan-seq": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datalust/bunyan-seq.git"
},
"keywords": [
"bunyan",
"seq"
],
"author": "Datalust and contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/datalust/bunyan-seq/issues"
},
"homepage": "https://github.com/datalust/bunyan-seq#readme",
"devDependencies": {
"@types/bunyan": "^1.8.7",
"@types/node": "^16.3.1",
"bunyan": "^1.8.15",
"mocha": "^10.2.0",
"prettier": "^2.2.1",
"sinon": "^9.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"commander": "^5.1.0",
"seq-logging": "^2.0.0",
"split2": "^3.1.1"
},
"engines": {
"node": ">=14.0.0"
}
}