forked from midwayjs/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "@midwayjs/logger",
"version": "2.16.3",
"description": "midway logger sdk",
"main": "dist/index",
"typings": "dist/index.d.ts",
"dependencies": {
"dayjs": "^1.10.7",
"object-hash": "^3.0.0",
"triple-beam": "^1.3.0",
"winston": "^3.3.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/jest": "28.1.6",
"@types/node": "16.11.45",
"colors": "1.4.0",
"cross-env": "7.0.3",
"egg-logger": "2.8.0",
"fs-extra": "10.1.0",
"jest": "28.1.3",
"mwts": "1.3.0",
"threads": "1.7.0",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"keywords": [
"midway",
"logger"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "./node_modules/.bin/jest --runInBand",
"cov": "./node_modules/.bin/jest --runInBand --coverage --forceExit",
"lint": "mwts check",
"lint:fix": "mwts fix"
},
"repository": {
"type": "git",
"url": "[email protected]:midwayjs/logger.git"
},
"license": "MIT"
}