This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.7 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
{
"name": "nestjs-universal-logger",
"version": "1.3.4",
"description": "Logger module for NestJS application",
"repository": {
"type": "git",
"url": "git+https://github.com/seedium/nestjs-universal-logger.git"
},
"keywords": [
"nestjs",
"logger",
"typescript",
"seedium",
"di"
],
"author": "Kostya Zgara",
"license": "MIT",
"bugs": {
"url": "https://github.com/seedium/nestjs-universal-logger/issues"
},
"homepage": "https://github.com/seedium/nestjs-universal-logger#readme",
"scripts": {
"clean": "rimraf -rf 'dist' 'tsconfig.tsbuildinfo'",
"build": "yarn clean && tsc -p tsconfig.json",
"lint": "eslint lib/**/*.ts",
"lint:test": "eslint -c .eslintrc.spec.yaml test/**/*.spec.ts",
"format": "prettier '{lib,test}/**/*.ts' '{lib,test}/*.ts' --write",
"test": "yarn clean && nyc --nycrc-path .nycrc.yaml mocha --reporter spec --exit 'test/**/*.spec.ts' 'test/*.spec.ts'",
"prerelease": "yarn build",
"release": "yarn run prerelease && release-it",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-angular": "15.0.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@nestjs/common": "8.2.3",
"@nestjs/core": "8.2.3",
"@nestjs/testing": "8.2.3",
"@release-it/conventional-changelog": "3.3.0",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/node": "14.18.0",
"@types/sinon": "10.0.6",
"@types/sinon-chai": "3.2.6",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"conventional-changelog-angular": "5.0.13",
"dotenv": "10.0.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"mocha": "9.1.3",
"nyc": "15.1.0",
"pinst": "2.1.6",
"prettier": "2.5.1",
"proxyquire": "2.1.3",
"reflect-metadata": "0.1.13",
"release-it": "14.11.8",
"rimraf": "3.0.2",
"rxjs": "7.4.0",
"semver": "7.3.5",
"sinon": "12.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"ts-node": "10.4.0",
"ts-toolbelt": "9.6.0",
"tslib": "2.3.1",
"typescript": "4.5.2"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^8.0.0",
"@nestjs/core": "^6.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0 || ^7.0.0"
},
"dependencies": {
"@types/pino": "7.0.4",
"lodash.isplainobject": "4.0.6",
"lodash.isstring": "4.0.1",
"pino": "7.5.1"
},
"packageManager": "yarn@3.1.1"
}