-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 1.16 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
{
"name": "pino-tee",
"version": "0.3.0",
"description": "Tee pino logs into a file, with multiple levels",
"main": "tee.js",
"scripts": {
"test": "standard | snazzy && tap test/*.js"
},
"bin": {
"pino-tee": "./tee.js"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino-tee.git"
},
"keywords": [
"pino",
"logger",
"tee",
"level",
"multiple",
"multi",
"stream"
],
"author": "Matteo Collina <[email protected]>",
"contributors": [
{
"name": "Salman Mitha",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-tee/issues"
},
"homepage": "https://github.com/pinojs/pino-tee#readme",
"devDependencies": {
"pre-commit": "^1.2.2",
"sinon": "^15.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.1.0",
"tmp": "0.2.1"
},
"dependencies": {
"cloneable-readable": "^3.0.0",
"fast-json-parse": "^1.0.3",
"minimist": "^1.2.5",
"pump": "^3.0.0",
"pino": "^8.4.0",
"readable-stream": "^4.0.0",
"split2": "^4.0.0"
}
}