forked from ovhemert/pino-stackdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "pino-stackdriver",
"version": "1.3.0",
"description": "A transport for pino that sends messages to Google Stackdriver Logging",
"homepage": "https://github.com/ovhemert/pino-stackdriver",
"main": "src/index.js",
"types": "pino-stackdriver.d.ts",
"scripts": {
"dev:cli": "node ./test/debug.js | node ./src/cli.js",
"lint": "standard",
"test": "standard && tap test/*.test.js --coverage",
"test:report": "standard && tap test/*.test.js --coverage --coverage-report=html --100"
},
"bin": {
"pino-stackdriver": "src/cli.js"
},
"keywords": [
"pino",
"pino-transport",
"google",
"logging",
"stackdriver"
],
"author": "Osmond van Hemert <[email protected]> (https://ovhemert.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ovhemert/pino-stackdriver.git"
},
"engines": {
"node": ">=8.9.0"
},
"precommit": [
"lint",
"test"
],
"devDependencies": {
"@types/node": "^13.5.0",
"event-stream": "^4.0.1",
"pino-multi-stream": "^4.3.0",
"sinon": "^8.1.1",
"standard": "^14.3.1",
"tap": "^14.10.6"
},
"dependencies": {
"@google-cloud/logging": "^7.0.1",
"commander": "^4.1.0",
"fast-json-parse": "^1.0.3",
"pumpify": "^2.0.1",
"split2": "^3.1.1",
"through2": "^3.0.1"
}
}