UNPKG

nest-local-https-proxy

Version:

A simple library to add HTTPS support to your HTTP NestJS application for local develoment, debugging, and testing.

58 lines (57 loc) 1.58 kB
{ "name": "nest-local-https-proxy", "version": "1.2.0", "description": "A simple library to add HTTPS support to your HTTP NestJS application for local develoment, debugging, and testing.", "repository": { "type": "git", "url": "https://github.com/rbonestell/nest-local-https-proxy.git" }, "bugs": { "url": "https://github.com/rbonestell/nest-local-https-proxy/issues" }, "keywords": [ "nest", "nestjs", "ssl", "tls", "https", "local", "express", "fastify", "secure", "certificate", "self-signed" ], "private": false, "main": "dist/local-https-proxy.js", "types": "dist/local-https-proxy.d.ts", "scripts": { "build": "rimraf -rf dist && tsc --removeComments && tsc --declaration --emitDeclarationOnly", "test": "jest --config=jest.config.js --detectOpenHandles --runInBand --forceExit", "test:cov": "jest --config=jest.config.js --detectOpenHandles --runInBand --coverage --forceExit" }, "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "author": "Bobby Bonestell <rbonestell@gmail.com>", "license": "MIT", "peerDependencies": { "@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0" }, "devDependencies": { "@nestjs/common": "^11.0.0", "@nestjs/platform-express": "^11.0.0", "@nestjs/platform-fastify": "^11.0.0", "@nestjs/testing": "^11.0.0", "@types/jest": "^29.5.14", "@types/node": "^22.13.1", "jest": "^29.7.0", "rimraf": "^6.0.1", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.7.3" } }