-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "nestjs-logger-roarr",
"contributors": [
{
"name": "Victor Adossi",
"email": "[email protected]",
"url": "https://vadosware.io"
}
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"version": "2.0.0",
"description": "Roarr integration for NestJS Logging (compatible with ConsoleLogger and LoggerService)",
"repository": {
"type": "git",
"url": "git+https://github.com/t3hmrman/nestjs-logger-roarr"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build-watch": "tsc -w -p tsconfig.json",
"build-production": "tsc -p tsconfig.build.json",
"clean": "rimraf ./dist",
"test-unit": "vitest run -c vitest.unit.ts",
"test-int": "vitest run -c vitest.int.ts",
"test-coverage": "vitest run -c vitest.coverage.ts"
},
"keywords": [
"nestjs",
"logging",
"logs",
"roarr"
],
"peerDependencies": {
"@nestjs/common": "^10"
},
"author": "vados <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@nestjs/testing": "^10.4.1",
"@types/roarr": "^2.14.7",
"@vitest/coverage-istanbul": "^0.29.8",
"typescript": "^5.5.4",
"vitest": "^0.29.8"
},
"dependencies": {
"@nestjs/common": "^10.4.1",
"roarr": "^7.21.1"
}
}