forked from algoan/nestjs-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@algoan/nestjs-gql-logging-interceptor",
"version": "2.6.0",
"description": "A simple NestJS interceptor to log input/output requests",
"keywords": [
"nestjs",
"typescript",
"nodejs",
"algoan"
],
"author": "diephil",
"homepage": "https://github.com/algoan/nestjs-components/tree/master/packages/nestjs-gql-logging-interceptor#readme",
"license": "ISC",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-components.git",
"directory": "packages/logging-interceptor"
},
"scripts": {
"build": "tsc -p .",
"test": "jest",
"test:cov": "jest --coverage"
},
"bugs": {
"url": "https://github.com/algoan/nestjs-components/issues"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@nestjs/common": ">=5",
"@nestjs/core": ">=5",
"express": ">=4",
"rxjs": ">=6"
},
"dependencies": {
"flatted": "^3.2.9"
}
}