-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "winston-sentry-log",
"version": "1.0.26",
"description": "Winston transport for @sentry/node",
"main": "dist/index.js",
"author": "Francisco Sales",
"repository": {
"type": "git",
"url": "https://github.com/franciscofsales/winston-sentry-log"
},
"license": "MIT",
"keywords": [
"logger",
"logging",
"node/sentry",
"sentry",
"transport",
"winston"
],
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"node dist/index.js\"",
"lint": "eslint .",
"prepublish": "npm run build",
"start": "node dist/index.js"
},
"engines": {
"node": ">= 6.4.0"
},
"dependencies": {
"@sentry/node": "^6.13.2",
"lodash": "^4.17.21",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/lodash": "^4.14.173",
"@types/node": "^11.9.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"ts-node": "^8.0.2",
"tsc-watch": "^2.1.2",
"typescript": "^3.3.3333",
"winston": "^3.3.3"
}
}