-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 KB
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
{
"name": "hapi-pino",
"version": "13.0.0",
"description": "Hapi plugin for the Pino logger ",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"coverage": "lab test.js -c",
"coverage:lcov": "lab test.js -r lcov -o coverage/lcov.info",
"coveralls": "lab test.js -r lcov | coveralls",
"test": "standard && lab --timeout 100000 test.js && tsd",
"prepare": "husky"
},
"keywords": [
"hapi",
"pino",
"logger",
"fast",
"slow",
"json"
],
"license": "MIT",
"devDependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/code": "^9.0.0",
"@hapi/hapi": "^21.0.0",
"@hapi/lab": "^25.0.0",
"@types/node": "^18.0.0",
"coveralls-next": "^5.0.0",
"flush-write-stream": "^2.0.0",
"husky": "^9.1.7",
"make-promises-safe": "^5.1.0",
"pino-pretty": "^9.0.0",
"split2": "^4.1.0",
"standard": "^17.0.0",
"tsd": "^0.20.0"
},
"dependencies": {
"@hapi/hoek": "^11.0.7",
"abstract-logging": "^2.0.1",
"get-caller-file": "^2.0.5",
"pino": "^9.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/hapi-pino.git"
},
"author": "David Mark Clements",
"bugs": {
"url": "https://github.com/pinojs/hapi-pino/issues"
},
"homepage": "https://github.com/pinojs/hapi-pino#readme"
}