-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"name": "nestjs-pino",
"version": "4.3.0",
"description": "Pino logger for NestJS",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --verbose -i --detectOpenHandles --forceExit",
"lint": "tsc --noemit && eslint \"{src,__tests__}/**/*.ts\" --fix",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"example": "rimraf dist && tsc && LOG_LEVEL=debug node dist/example/main",
"prepublishOnly": "npm run build && cp -r ./dist/* .",
"postpublish": "git clean -fd",
"postinstall": "node postinstall.js"
},
"files": [
"*.{js,d.ts}",
"!jest.config.js",
"!.eslintrc.js"
],
"engineStrict": true,
"engines": {
"node": ">= 14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamolegga/nestjs-pino.git"
},
"keywords": [
"pino",
"nestjs",
"nest.js",
"nest",
"logger"
],
"author": "iamolegga <iamolegga@gmail.com> (http://github.com/iamolegga)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamolegga/nestjs-pino/issues"
},
"homepage": "https://github.com/iamolegga/nestjs-pino#readme",
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/common": "^11.0.3",
"@nestjs/core": "^11.0.3",
"@nestjs/platform-express": "^11.0.3",
"@nestjs/platform-fastify": "^11.0.3",
"@nestjs/testing": "^11.0.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/memorystream": "^0.3.4",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"jest": "29.7.0",
"memorystream": "^0.3.1",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"prettier": "^3.4.2",
"reflect-metadata": "^0.1.14",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"pino-http": "^6.4.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
}
}