forked from aandrewww/pino-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
55
56
57
58
{
"name": "pino-sentry",
"description": "@sentry/node transport for pino logger",
"version": "0.2.2",
"author": "Andrew Avdeev <andrewww.avdeev@gmail.com>",
"keywords": [
"logger",
"loggly",
"logging",
"node",
"tools",
"sentry",
"transport",
"pino"
],
"main": "dist/index.js",
"files": [
"/dist",
"/src"
],
"bin": {
"pino-sentry": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"repository": "https://github.com/aandrewww/pino-sentry.git",
"license": "MIT",
"bugs": {
"url": "https://github.com/aandrewww/pino-sentry/issues"
},
"homepage": "https://github.com/aandrewww/pino-sentry#readme",
"engines": {
"node": ">= 6.4.0"
},
"dependencies": {
"@sentry/node": "^5.5.0",
"commander": "^2.20.0",
"pify": "^4.0.1",
"pump": "^3.0.0",
"split2": "^3.1.1",
"through2": "^3.0.1"
},
"devDependencies": {
"@types/node": "^12.6.9",
"@types/pify": "^3.0.2",
"@types/pump": "^1.1.0",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.34",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"pino": "^5.13.1",
"typescript": "^3.6.3"
}
}