-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@einsenundnullen/better-nestjs-logger",
"version": "1.8.0",
"description": "Better logger for NestJS, with json and no hassle",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --verbose -i --detectOpenHandles",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"example": "rimraf dist && tsc && LOG_LEVEL=debug node dist/example/main",
"prepublishOnly": "npm run build && cp -r ./dist/* .",
"postpublish": "git clean -fd",
"publish:npm": "npm run build && npm publish --access public"
},
"files": [
"*.{js,d.ts}"
],
"engineStrict": true,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/einsenundnullen/better-nestjs-logger.git"
},
"keywords": [
"nestjs",
"nest.js",
"nest",
"logger",
"json-logging"
],
"author": "Einsen und Nullen <npm@einsen-und-nullen.de> (https://github.com/einsenundnullen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/einsenundnullen/better-nestjs-logger/issues"
},
"homepage": "https://github.com/einsenundnullen/better-nestjs-logger#readme",
"devDependencies": {
"@nestjs/common": "^10.2.9",
"@nestjs/core": "^10.2.9",
"@nestjs/platform-express": "^10.2.9",
"@nestjs/testing": "^10.2.9",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "29.7.0",
"prettier": "^3.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node"
},
"peerDependencies": {
"@nestjs/common": ">=10"
},
"dependencies": {
"http-status-codes": "^2.3.0"
}
}