-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.8 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
{
"name": "winston-format-pretty-console",
"version": "1.2.2",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node src/example.js",
"base-prettier": "prettier --ignore-path .gitignore",
"base-eslint": "eslint --ignore-path .gitignore --rule 'no-console: 1'",
"format": "npm run base-eslint -- --fix \"**/*.js\" && npm run base-prettier -- --write \"**/*.{js,md}\"",
"lint-prettier": "npm run base-prettier -- -l \"**/*.{js,md}\"",
"lint-eslint": "npm run base-eslint -- --max-warnings 0 \"**/*.js\"",
"lint": "npm run lint-prettier && npm run lint-eslint",
"test": "jest ./src",
"test-watch": "npm run test -- --watch --notify"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run base-eslint -- --fix --max-warnings 0",
"npm run base-prettier -- --write",
"git add"
]
},
"engines": {
"node": ">=6.9"
},
"dependencies": {
"triple-beam": "1.3.0",
"winston": "3.2.1"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"chalk": "2.4.2",
"eslint": "6.5.1",
"eslint-config-ai": "1.6.2",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-jest": "22.17.0",
"husky": "3.0.7",
"jest": "24.9.0",
"lint-staged": "9.4.1",
"prettier": "1.18.2"
},
"peerDependencies": {
"winston": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexilyaev/winston-format-pretty-console.git"
},
"keywords": [
"winston",
"console",
"formatter",
"format"
],
"author": "Alex Ilyaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexilyaev/winston-format-pretty-console/issues"
},
"homepage": "https://github.com/alexilyaev/winston-format-pretty-console#readme"
}