-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "winston-sentry-javascript-node",
"version": "0.2.2",
"description": "Sentry transport for the winson logger that using official Sentry SDK for javascript instead of the old Raven.",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"prepublish": "npm run build"
},
"author": "Ben Hu <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/benjamin658/winston-sentry-javascript-node.git"
},
"homepage": "https://github.com/benjamin658/winston-sentry-javascript-node",
"keywords": [
"winston",
"winston-logger",
"winston-transport",
"sentry",
"sentry-javascript",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"typescript": "^3.6.3",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"dependencies": {
"@sentry/node": "^5.6.2"
},
"peerDependencies": {
"winston": ">= 3.x"
}
}