-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 960 Bytes
/
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
{
"name": "nestjs-logtime-decorator",
"description": "Typescript decorator to log the duration of a method, for NestJs.",
"keywords": [
"Typescript",
"NestJS",
"Log",
"Time"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"version": "1.1.2",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/pleymor/nestjs-logtime-decorator.git"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "echo \"No test specified\""
},
"peerDependencies": {
"@nestjs/common": ">=6.0.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}