nestjs-eureka
Version:
A NestJS module that integrate eureka-js-client
87 lines (86 loc) • 2.51 kB
JSON
{
"name": "nestjs-eureka",
"version": "2.0.0",
"description": "A NestJS module that integrate eureka-js-client",
"author": "F. Boisselier <florent.boisselier.fr@gmail.com",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/fboisselier52/nestjs-eureka.git"
},
"keywords": [
"nestjs",
"module",
"eureka",
"eureka-js-client"
],
"files": [
"dist"
],
"bugs": {
"url": "https://gitlab.com/fboisselier52/nestjs-eureka/issues"
},
"homepage": "https://gitlab.com/fboisselier52/nestjs-eureka#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint-fix": "tslint -p tsconfig.json -c tslint.json --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:e2e:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand --config ./test/jest-e2e.json"
},
"dependencies": {
"@nestjs/axios": "^1.0.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"eureka-js-client": "^4.5.0",
"ip": "^1.1.5",
"lodash": "^4.17.15",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/eureka-js-client": "^4.5.2",
"@types/express": "^4.17.1",
"@types/ip": "^1.1.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.144",
"@types/node": "^12.7.5",
"@types/supertest": "^2.0.8",
"jest": "^29.0.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^29.0.0",
"ts-loader": "^9.0.0",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}