-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "@midwayjs/logger",
"version": "3.4.2",
"description": "midway logger sdk",
"main": "dist/index",
"typings": "index.d.ts",
"dependencies": {
"dayjs": "^1.10.7",
"safe-stable-stringify": "^2.4.3"
},
"devDependencies": {
"@types/jest": "29",
"@types/node": "22.10.5",
"benchmark": "^2.1.4",
"cross-env": "7.0.3",
"fs-extra": "11.2.0",
"jest": "29",
"mwts": "1.3.0",
"threads": "1.7.0",
"ts-jest": "29",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"index.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"
}