forked from andyrichardson/pino-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@thesparklaboratory/pino-sentry",
"version": "2.0.5",
"description": "@sentry/node transport for pino logger",
"keywords": [
"logger",
"loggly",
"logging",
"node",
"tools",
"sentry",
"transport",
"pino"
],
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"bin": {
"pino-sentry": "dist/cli.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -b tsconfig.build.json",
"lint": "eslint src/**/*.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.mjs",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"repository": "https://github.com/thesparklaboratory/pino-sentry.git",
"license": "MIT",
"bugs": {
"url": "https://github.com/thesparklaboratory/pino-sentry/issues"
},
"homepage": "https://github.com/thesparklaboratory/pino-sentry#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"commander": "^13.1.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"jiti": "^2.4.2",
"pumpify": "^2.0.1",
"split2": "^4.2.0",
"through2": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/pumpify": "^1.4.4",
"@types/split2": "^4.2.3",
"@types/through2": "^2.0.41",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"jest": "^29.7.0",
"pino": "^9.6.0",
"sentry-testkit": "^6.1.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"peerDependencies": {
"@sentry/node": "^9.5.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}