-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.59 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-swagger-api-http-response-decorators",
"version": "3.2.0",
"description": "Small npm package that exports 'Api' decorators for all HTTP status codes available on @nestjs/common package, to use with @nestjs/swagger.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"prebuild": "./scripts/fetch-missing-decorators.sh && ./scripts/generate-index-ts-file.js",
"build": "tsc",
"download": "./scripts/fetch-missing-decorators.sh",
"create": "node scripts/generate-index-ts-file.js",
"dev": "NODE_ENV=development tsc --watch",
"clean": "rm *.ts index.js",
"prepare": "npm run build",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micalevisk/nestjs-swagger-api-http-response-decorators.git"
},
"bugs": {
"url": "https://github.com/micalevisk/nestjs-swagger-api-http-response-decorators/issues"
},
"homepage": "https://github.com/micalevisk/nestjs-swagger-api-http-response-decorators#readme",
"keywords": [
"nestjs",
"swagger"
],
"author": "Micael Levi (https://micalevisk.github.io)",
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@nestjs/common": "^10.3.7",
"@nestjs/swagger": "^7.3.1",
"@types/node": "^20.12.5",
"to-pascal-case": "^1.0.0",
"typescript": "^5.4.4"
},
"peerDependencies": {
"@nestjs/common": "^7 || ^8 || ^9 || ^10",
"@nestjs/swagger": "^4 || ^5 || ^6 || ^7"
}
}