-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "pino-filter",
"version": "2.0.0",
"description": "A transport for Pino to filter logs based on logger names",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"test": "tap",
"test:ci": "standard | snazzy && tap --coverage-report=lcovonly"
},
"precommit": [
"lint",
"test"
],
"bin": {
"pino-filter": "./bin.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pinojs/pino-filter.git"
},
"keywords": [
"pino"
],
"author": "James Sumners <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-filter/issues"
},
"homepage": "https://github.com/pinojs/pino-filter#readme",
"devDependencies": {
"flush-write-stream": "^2.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.4"
},
"dependencies": {
"deep-assign": "^3.0.0",
"fast-json-parse": "^1.0.3",
"pump": "^3.0.0",
"split2": "^4.2.0",
"through2": "^4.0.2"
}
}