-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
58 lines (58 loc) · 1.44 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
56
57
58
{
"name": "winston-transport-sentry-node",
"description": "@sentry/node transport for the winston v3 logger",
"version": "3.0.0",
"author": "Andrew Avdeev <[email protected]>",
"keywords": [
"logger",
"loggly",
"logging",
"node",
"tools",
"sentry",
"transport",
"winston",
"winston3"
],
"main": "dist/transport.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"test": "npm run build && tsc -p tsconfig.test.json && mocha"
},
"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": ">= 8.10.0"
},
"dependencies": {
"triple-beam": "^1.3.0",
"tslib": "^2.3.1",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@sentry/node": "^8.13.0"
}
}