-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1008 Bytes
/
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
{
"name": "winston-dev-format",
"version": "0.2.1",
"description": "A pretty log formatter for Winston",
"repository": "https://github.com/tamlyn/winston-dev-format",
"main": "src/format.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix src/ tools/"
},
"dependencies": {
"triple-beam": "^1.3.0"
},
"peerDependencies": {
"winston": ">=3"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^29.3.1",
"lint-staged": "^10.1.1",
"prettier": "^2.0.4",
"semver": "^7.3.2",
"winston": "^3.2.1"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write",
"*.js": "eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"keywords": [
"winston",
"log",
"logform",
"format",
"formatter",
"dev",
"development",
"pretty"
],
"engines": {
"node": ">=14"
},
"author": "Tamlyn Rhodes",
"license": "MIT"
}