forked from franciscofsales/winston-sentry-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "winston-sentry-log",
"version": "1.0.5",
"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": "tslint -c tslint.json -p tsconfig.json",
"start": "node dist/index.js"
},
"engines": {
"node": ">= 6.4.0"
},
"dependencies": {
"@sentry/node": "^4.2.1",
"lodash": "^4.17.11",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.117",
"@types/node": "^10.12.0",
"ts-node": "^7.0.1",
"tsc-watch": "^1.0.30",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.3",
"winston": "^3.1.0"
}
}