forked from ExpediaGroup/pino-rotating-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.99 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@vrbo/pino-rotating-file",
"version": "4.4.0",
"description": "A hapi-pino log transport for splitting logs into separate, automatically rotating files.",
"keywords": [
"pino",
"hapi-pino",
"hapi",
"hapi.js",
"rotating",
"log",
"logging",
"node.js",
"homeaway",
"vrbo",
"expedia",
"expediagroup"
],
"bugs": {
"url": "https://github.com/expediagroup/pino-rotating-file/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/expediagroup/pino-rotating-file"
},
"license": "Apache-2.0",
"author": {
"name": "Expedia Group",
"email": "[email protected]"
},
"contributors": [
"tlivingston",
"tuckbick",
"mcjfunk",
"holmok",
"skphi13",
"joonastanner"
],
"main": "lib/index.js",
"bin": {
"rotate-logs": "./lib/index.js"
},
"scripts": {
"commit": "cz",
"lint": "standard",
"nyc": "nyc --reporter=text --reporter=text-summary --reporter=html npm run tape",
"postnyc": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"tape": "tape ./tests/**/*.test.js | tap-spec",
"test": "npm run lint && npm run nyc"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"debug": "^4.1.1",
"minimist": "^1.2.0",
"pump": "^3.0.0",
"rotating-file-stream": "^3.0.0",
"split2": "^4.0.0",
"through2": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"mock-require": "^3.0.3",
"mock-stdin": "^1.0.0",
"nyc": "^15.0.0",
"semantic-release": "^19.0.5",
"sinon": "^15.0.1",
"standard": "^17.0.0",
"std-mocks": "^1.0.1",
"tap-spec": "^5.0.0",
"tape": "^5.6.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"publishConfig": {
"access": "public"
}
}