-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.6 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
{
"name": "winston-ready",
"version": "3.3.0",
"main": "index.js",
"types": "types.d.ts",
"description": "A ready-to-use Winston-Logger configuration",
"author": "Leandro Di Lorenzo <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/leandrojdl/winston-ready"
},
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint --ext .js ./",
"release": "dotenv release-it",
"jsdoc": "jsdoc -t node_modules/tsd-jsdoc/dist container.js index.js -d .",
"test": "jest --verbose",
"test:ci": "jest --verbose --coverage"
},
"dependencies": {
"dotenv": "16.3.1",
"winston": "3.11.0",
"winston-daily-rotate-file": "4.7.1"
},
"devDependencies": {
"coveralls": "3.1.1",
"dotenv-cli": "7.3.0",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"jsdoc": "3.6.11",
"release-it": "16.2.1",
"tsd-jsdoc": "2.5.0"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint"
]
},
"git": {
"commitMessage": ":bookmark: v${version}"
},
"github": {
"release": true,
"releaseName": "Release ${version}"
},
"npm": {
"publish": true
}
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"collectCoverageFrom": [
"index.js"
]
},
"keywords": [
"logger",
"winston"
]
}