@globalart/nestjs-swagger
Version:
A simple documentation builder for NestJS Swagger Module
85 lines (84 loc) • 2.03 kB
JSON
{
"name": "@globalart/nestjs-swagger",
"version": "1.2.5",
"description": "A simple documentation builder for NestJS Swagger Module",
"author": {
"name": "GlobalArt, Inc"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobalArtInc/nestjs-toolkit.git#main"
},
"keywords": [
"nestjs",
"swagger",
"documentation"
],
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"test": "jest --runInBand --passWithNoTests",
"test:cov": "jest --coverage --passWithNoTests",
"coveralls": "yarn run test:cov --coverageReporters=text-lcov | coveralls",
"build": "rm -rf ./dist && tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"publish:npm": "release-it"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/core": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@nestjs/testing": "^11.1.6",
"@nestjs/typeorm": "^11.0.0",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"coveralls": "^3.1.1",
"jest": "^30.0.3",
"prettier": "^3.6.2",
"reflect-metadata": "^0.2.2",
"release-it": "19.0.4",
"rxjs": "^7.8.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typeorm": "0.3.26",
"typescript": "^5.9.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/__tests__"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
},
"publishConfig": {
"access": "public"
}
}