-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·85 lines (85 loc) · 2.2 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
{
"name": "@dmytropaduchak/nestjs-log",
"homepage": "https://github.com/dmytropaduchak/nestjs-log#readme",
"version": "1.0.8",
"description": "A simple log decorator or (TypeScript) for Nest framework (node.js) unified approach for class and function logging.",
"author": "Dmytro Paduchak <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "prettier --write \"src/**/*.ts\" && eslint \"src/**/*.ts\"",
"test": "jest --coverage --verbose && coveralls < coverage/lcov.info",
"test:dev": "jest --watch"
},
"keywords": [
"nestjs",
"nestjs-log",
"nestjs-log-decorator",
"log",
"log-decorator",
"logger",
"logger-decorator",
"decorator"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"colors": "^1.4.0",
"geoip-country": "^4.0.110"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmytropaduchak/nestjs-log.git"
},
"bugs": {
"url": "https://github.com/dmytropaduchak/nestjs-log/issues"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0 || ^7.2.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"devDependencies": {
"@nestjs/common": "^8.4.1",
"@nestjs/core": "^8.4.1",
"@nestjs/testing": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"coveralls": "^3.1.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"sinon": "^13.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}