-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "pino-datadog",
"version": "2.0.2",
"description": "A transport for pino that sends messages to DataDog",
"homepage": "https://github.com/ovhemert/pino-datadog",
"main": "src/index.js",
"scripts": {
"dev:cli": "node ./test/debug.js | node ./src/cli.js",
"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-datadog": "src/cli.js"
},
"keywords": [
"pino",
"pino-transport",
"datadog",
"logging"
],
"author": "Osmond van Hemert <[email protected]> (https://ovhemert.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ovhemert/pino-datadog.git"
},
"engines": {
"node": ">=8.9.0"
},
"precommit": [
"lint",
"test"
],
"devDependencies": {
"pino-multi-stream": "^5.2.0",
"sinon": "^9.2.4",
"standard": "^14.3.4",
"tap": "^14.11.0"
},
"dependencies": {
"axios": "^0.27.2",
"batch2": "^2.0.0",
"commander": "^9.3.0",
"fast-json-parse": "^1.0.3",
"pumpify": "^2.0.1",
"split2": "^4.1.0",
"stream": "0.0.2",
"through2": "^4.0.2"
}
}