forked from iamolegga/nestjs-pino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.37 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
89
90
91
{
"name": "nestjs-pino",
"version": "2.3.1",
"description": "Pino logger for NestJS",
"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",
"example": "rimraf dist && tsc && LOG_LEVEL=debug node dist/example/main",
"prepublishOnly": "npm run build && cp -r ./dist/* .",
"postpublish": "git clean -fd"
},
"files": [
"*.{js,d.ts}"
],
"engineStrict": true,
"engines": {
"node": ">=12.17.0 || >=13.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamolegga/nestjs-pino.git"
},
"keywords": [
"pino",
"nestjs",
"nest.js",
"nest",
"logger"
],
"author": "Oleg Repin <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": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-fastify": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/memorystream": "^0.3.0",
"@types/node": "^16.0.0",
"@types/pino-http": "^5.4.3",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.4.5",
"memorystream": "^0.3.1",
"pino-http": "^6.0.0",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node"
},
"peerDependencies": {
"pino-http": "^6.0.0"
}
}