-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "@payk/nestjs-winston",
"version": "1.2.1",
"license": "MIT",
"description": "Winston for Nest has never been this easy",
"keywords": [
"nestjs",
"nest",
"winston",
"logger",
"logging",
"nestjs-winston"
],
"author": "Dan Shapir <danshapir89@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "tslint --project tsconfig.json",
"test": "mocha --opts .mocharc",
"test-juint": "mocha --opts .mocharc --reporter mocha-junit-reporter",
"prebuild": "rimraf dist",
"build": "tsc"
},
"dependencies": {
"winston": "^3.2.1"
},
"devDependencies": {
"@nestjs/common": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/platform-express": "^6.7.2",
"@nestjs/testing": "^6.7.2",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"peerDependencies": {
"@nestjs/common": "^5.0.0 || ^6.6.0",
"winston": "^3.0.0"
},
"homepage": "https://github.com/pay-k/nestjs-winston#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pay-k/nestjs-winston.git"
},
"bugs": {
"url": "https://github.com/pay-k/nestjs-winston/issues"
}
}