forked from gremo/nest-winston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "nest-winston",
"version": "1.6.2",
"license": "MIT",
"description": "A Nest module wrapper for winston",
"keywords": [
"nestjs",
"winston",
"logger"
],
"author": "Marco Polichetti <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint src/**/*.ts --ignore-pattern src/**/*.spec.ts",
"test": "jest",
"prebuild": "rimraf dist",
"build": "tsc"
},
"dependencies": {
"chalk": "^5.0.1",
"fast-safe-stringify": "^2.1.1"
},
"devDependencies": {
"@nestjs/common": "8.4.6",
"@nestjs/core": "8.4.6",
"@nestjs/platform-express": "8.4.6",
"@nestjs/testing": "8.4.6",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"jest": "28.1.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.5",
"source-map-support": "0.5.21",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"typescript": "4.7.4",
"winston": "3.7.2"
},
"peerDependencies": {
"@nestjs/common": "^5.0.0 || ^6.6.0 || ^7.0.0 || ^8.0.0",
"winston": "^3.0.0"
},
"homepage": "https://github.com/gremo/nest-winston#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gremo/nest-winston.git"
},
"bugs": {
"url": "https://github.com/gremo/nest-winston/issues"
}
}