-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.44 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "laabr",
"description": "well-formatted, extendable pino logger for hapi.js",
"keywords": [
"hapi",
"hapijs",
"pino",
"log",
"logger",
"logging",
"fast",
"json",
"morgan",
"processing",
"custom",
"format",
"console"
],
"version": "6.1.3",
"license": "MIT",
"author": {
"name": "Felix Heck",
"email": "[email protected]",
"url": "https://daheq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/felixheck/laabr.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/felixheck/laabr/issues"
},
"main": "./src/index.js",
"scripts": {
"start": "NODE_ENV=test npm test -- -w",
"lint": "standard",
"test": "NODE_ENV=test nyc --check-coverage --lines 80 ava ./test/**.spec.js --timeout=30s",
"coverage": "nyc report --reporter=lcov",
"ci.coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@hapi/hapi": ">=19.1",
"ava": "^3.13.0",
"coveralls": "^3.1.0",
"fixture-stdout": "^0.2.1",
"nyc": "^15.1.0",
"standard": "^16.0.3"
},
"dependencies": {
"joi": "^17.1.1",
"colors": "^1.4.0",
"error-stack-parser": "^2.0.6",
"hapi-pino": "^8.3.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"pino": "^6.7.0"
},
"peerDependencies": {
"@hapi/hapi": ">=18.4"
},
"engines": {
"node": ">= 12",
"npm": ">= 6"
}
}