-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 847 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
38
39
40
{
"name": "pino-raven",
"version": "0.1.0",
"description": "A transport for pino that formats and sends messages to Sentry",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard | snazzy"
},
"bin": {
"pino-raven": "./bin.js"
},
"keywords": [
"pino",
"pino-transport",
"logging",
"sentry",
"raven"
],
"author": "Jérôme Macias <[email protected]>",
"license": "MIT",
"dependencies": {
"fast-json-parse": "~1.0.2",
"nopt": "~4.0.1",
"pump": "~3.0.0",
"raven": "~2.4.2",
"split2": "~2.2.0",
"through2": "~2.0.3"
},
"peerDependencies": {
"pino": "*"
},
"devDependencies": {
"nock": "~9.2.3",
"pino": "~4.13.0",
"snazzy": "~7.1.1",
"standard": "~11.0.0",
"tap": "~11.1.2"
}
}