-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "pino-papertrail",
"version": "2.1.0",
"description": "A transport for pino that sends messages to Papertrail",
"homepage": "https://github.com/ovhemert/pino-papertrail",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"test": "standard && tap test/*.test.js --coverage --100",
"test:report": "standard && tap test/*.test.js --coverage --coverage-report=html --100",
"posttest": "tap --coverage --coverage-report=lcovonly"
},
"bin": {
"pino-papertrail": "./cli.js"
},
"keywords": [
"pino",
"pino-transport",
"logging",
"papertrail"
],
"author": "Osmond van Hemert <hello@ovhemert.dev> (https://ovhemert.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ovhemert/pino-papertrail.git"
},
"engines": {
"node": ">=8.9.0"
},
"precommit": [
"lint",
"test"
],
"devDependencies": {
"dotenv": "^10.0.0",
"pino": "^6.4.1",
"pino-multi-stream": "^6.0.0",
"sinon": "^9.0.2",
"standard": "^14.3.4",
"tap": "^14.10.8"
},
"dependencies": {
"backoff": "^2.5.0",
"fast-json-parse": "^1.0.3",
"glossy": "^0.1.7",
"minimist": "^1.2.6",
"pumpify": "^2.0.1",
"split2": "^3.2.2",
"stream-buffers": "^3.0.2",
"through2": "^4.0.2"
}
}