-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·53 lines (53 loc) · 1.17 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
{
"name": "pino-pretty-min",
"version": "0.3.2",
"description": "minimalistic ndjson logger for pino",
"bin": {
"pino-pretty-min": "bin.js"
},
"repository": "unjello/pino-pretty-min",
"main": "index.js",
"scripts": {
"start": "node node_modules/pino/example.js | node ./bin.js",
"lint": "standard | snazzy",
"lint-ci": "standard",
"test": "jest --env=node --coverage",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"standard": {
"env": [
"jest"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"keywords": [
"logger",
"pretty-printer"
],
"author": "Andrzej Lichnerowicz <andrzej@lichnerowicz.pl>",
"license": "CC0-1.0",
"devDependencies": {
"husky": "^5.0.9",
"jest": "^26.6.3",
"pino": "^6.11.1",
"snazzy": "^9.0.0",
"standard": "^16.0.3"
},
"dependencies": {
"@hapi/bourne": "^2.0.0",
"args": "^5.0.1",
"chalk": "^4.1.0",
"moment": "^2.29.1",
"pad": "^3.2.0",
"pump": "^3.0.0",
"split2": "^3.2.0",
"through2": "^4.0.2",
"unicode-string-width": "^0.1.0"
}
}