forked from pinojs/pino-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "pino-pretty",
"version": "2.4.0",
"description": "Prettifier for Pino log lines",
"main": "index.js",
"bin": {
"pino-pretty": "./bin.js"
},
"scripts": {
"lint": "standard | snazzy",
"lint-ci": "standard",
"test": "tap --no-cov 'test/**/*.test.js'",
"test-ci": "tap --cov 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/pinojs/pino-pretty.git"
},
"keywords": [
"pino"
],
"author": "James Sumners <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-pretty/issues"
},
"homepage": "https://github.com/pinojs/pino-pretty#readme",
"precommit": [
"lint",
"test"
],
"dependencies": {
"args": "^5.0.0",
"chalk": "^2.3.2",
"dateformat": "^3.0.3",
"fast-json-parse": "^1.0.3",
"jmespath": "^0.15.0",
"pump": "^3.0.0",
"readable-stream": "^3.0.6",
"split2": "^3.0.0"
},
"devDependencies": {
"pino": "^5.9.0",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.1.0"
}
}