forked from aandrewww/winston-transport-sentry-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "winston-transport-sentry-node",
"description": "@sentry/node transport for the winston v3 logger",
"version": "0.1.0",
"author": "Andrew Avdeev <andrewww.avdeev@gmail.com>",
"keywords": [
"logger",
"loggly",
"logging",
"node",
"tools",
"sentry",
"transport",
"winston",
"winston3"
],
"main": "dist/index.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"repository": "https://github.com/aandrewww/winston-transport-sentry-node.git",
"license": "MIT",
"bugs": {
"url": "https://github.com/aandrewww/winston-transport-sentry-node/issues"
},
"homepage": "https://github.com/aandrewww/winston-transport-sentry-node#readme",
"engines": {
"node": ">= 6.4.0"
},
"dependencies": {
"@sentry/node": "^5.5.0",
"lodash": "^4.17.14",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@types/node": "^12.6.9",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"typescript": "^3.5.3"
}
}