-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 997 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 997 Bytes
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
{
"name": "@midwayjs/logger",
"version": "4.0.1",
"description": "midway logger sdk",
"main": "dist/index",
"typings": "index.d.ts",
"dependencies": {
"dayjs": "^1.11.13",
"safe-stable-stringify": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"benchmark": "^2.1.4",
"fs-extra": "11.3.3",
"jest": "^30.0.4",
"mwts": "1.3.0",
"threads": "1.7.0",
"ts-jest": "^29.4.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"index.d.ts"
],
"keywords": [
"midway",
"logger"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --runInBand",
"cov": "jest --runInBand --coverage --forceExit",
"lint": "mwts check",
"lint:fix": "mwts fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/midwayjs/logger.git"
},
"license": "MIT"
}