forked from aandrewww/pino-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "pino-sentry",
"description": "@sentry/node transport for pino logger",
"version": "0.9.0",
"author": "Andrew Avdeev <[email protected]>",
"keywords": [
"logger",
"loggly",
"logging",
"node",
"tools",
"sentry",
"transport",
"pino"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pino-sentry": "dist/cli.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -b tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"test": "node ./test/test.js",
"prepublishOnly": "npm run lint && npm run build && npm run test"
},
"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": ">=10"
},
"dependencies": {
"@sentry/node": "^6.2.5",
"commander": "^2.20.0",
"pumpify": "^2.0.1",
"split2": "^3.1.1",
"through2": "^3.0.1"
},
"devDependencies": {
"@types/node": "^12.6.9",
"@types/pumpify": "^1.4.1",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.34",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"pino": "^6.5.1",
"typescript": "^3.9.7"
}
}