-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.03 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": "@probot/pino",
"version": "0.0.0-development",
"publishConfig": {
"access": "public",
"provenance": true
},
"bin": {
"pino-probot": "./cli.js"
},
"description": "formats pino logs and sends errors to Sentry",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "tap --coverage-report html",
"test": "tap 'test/*.js'",
"lint": "prettier --check '**/*.js' '.github/**/*.yml' '*.md' package.json",
"lint:fix": "prettier --write '**/*.js' '.github/**/*.yml' '*.md' package.json"
},
"keywords": [
"pino"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"repository": "github:probot/pino",
"devDependencies": {
"@types/pino": "^7.0.5",
"pino": "^6.6.0",
"prettier": "^2.1.1",
"tap": "^16.0.1"
},
"dependencies": {
"@sentry/node": "^7.119.2",
"pino-pretty": "^6.0.0",
"pump": "^3.0.0",
"readable-stream": "^3.6.0",
"split2": "^4.0.0"
},
"release": {
"branches": [
"main"
]
}
}