-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "@makerx/node-winston",
"version": "1.2.0",
"private": false,
"description": "A set of winston formats, console transport and logger creation functions",
"author": "MakerX",
"license": "MIT",
"engines": {
"node": ">=16.0"
},
"bugs": {
"url": "https://github.com/MakerXStudio/node-winston/issues"
},
"homepage": "https://github.com/MakerXStudio/node-winston#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/node-winston.git"
},
"scripts": {
"build": "run-s build:*",
"build:0-clean": "rimraf dist coverage",
"build:1-compile": "tsc -p tsconfig.build.json",
"build:2-copy-pkg-json": "npx --yes @makerx/ts-toolkit@latest copy-package-json",
"build:3-copy-readme": "copyfiles README.md dist",
"test": "jest --coverage --coverageReporters=text",
"lint": "eslint ./src/ --ext .ts",
"lint:fix": "eslint ./src/ --ext .ts --fix",
"check-types": "tsc --noEmit",
"audit": "better-npm-audit audit"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"lodash.isnil": "^4.0.0",
"lodash.omit": "^4.5.0",
"lodash.omitby": "^4.6.0",
"logform": "^2.5.1",
"triple-beam": "^1.4.1",
"winston": "^3.10.0",
"winston-transport": "^4.5.0",
"yamlify-object": "^1.0.0",
"yamlify-object-colors": "^1.0.3"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^29.5.3",
"@types/lodash.isnil": "^4.0.7",
"@types/lodash.omit": "^4.5.7",
"@types/lodash.omitby": "^4.6.7",
"@types/node-fetch": "^2.6.4",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"better-npm-audit": "^3.7.3",
"copyfiles": "^2.4.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"overrides": {
"semver": "^7.5.3"
}
}