forked from alex-ppg/fastify-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 813 Bytes
/
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
{
"name": "fastify-sentry",
"version": "1.4.0",
"description": "A plugin for attaching the Sentry SDK error handling to Fastify",
"main": "index.js",
"scripts": {
"test": "tap test.js"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-ppg/fastify-sentry.git"
},
"keywords": [
"fastify",
"api",
"sentry",
"error",
"handling"
],
"author": "Alex Papageorgiou",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/alex-ppg/fastify-sentry/issues"
},
"homepage": "https://github.com/alex-ppg/fastify-sentry#readme",
"dependencies": {
"@sentry/node": "^5.9.0",
"fastify-plugin": "^1.2.1"
},
"devDependencies": {
"fastify": "^1.13.1",
"tap": "^14.10.1"
}
}