-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@epegzz/winston-dev-console",
"description": "Winston@3 console format aimed to improve development UX",
"version": "1.3.4",
"license": "MIT",
"author": {
"name": "Daniel Schäfer <[email protected]>",
"url": "https://github.com/epegzz/"
},
"keywords": [
"winston",
"console",
"format",
"formatter",
"inspect",
"debug",
"debugging"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo noop",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"lint": "eslint ./src --ext ts --ext js",
"example": "node ./example/index.js"
},
"dependencies": {
"colors": "^1.4.0",
"logform": "^2.3.0",
"triple-beam": "^1.3.0"
},
"peerDependencies": {
"winston": "^3.x"
},
"devDependencies": {
"@types/logform": "^1.10.1",
"@types/node": "^14.14.37",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-lodash": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "2.2.1",
"typescript": "^4.2.3"
}
}