Glosur/nestjs-actuator

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@glosur/nestjs-actuator",
  "version": "0.0.3",
  "description": "Integration with Spring Boot Admin for NestJS",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/Glosur/nestjs-actuator.git"
  },
  "author": "Glosur <s.blanc@hotmail.fr>",
  "license": "MIT",
  "keywords": [
    "nest",
    "nestjs",
    "monitoring",
    "spring-boot-admin"
  ],
  "dependencies": {
    "@nestjs/common": "7.6.18",
    "@nestjs/core": "7.6.18",
    "@nestjs/schedule": "^1.0.0"
  },
  "devDependencies": {
    "@nestjs/cli": "7.6.0",
    "@nestjs/platform-express": "7.6.18",
    "@nestjs/schematics": "8.0.3",
    "@nestjs/terminus": "8.0.1",
    "@nestjs/testing": "7.6.18",
    "@types/express": "4.17.13",
    "@types/jest": "27.0.2",
    "@types/node": "14.17.21",
    "@types/supertest": "2.0.11",
    "@typescript-eslint/eslint-plugin": "4.33.0",
    "@typescript-eslint/parser": "4.33.0",
    "eslint": "7.32.0",
    "eslint-config-prettier": "7.2.0",
    "eslint-plugin-import": "2.24.2",
    "eslint-plugin-prettier": "4.0.0",
    "jest": "27.2.5",
    "lint-staged": "11.2.3",
    "prettier": "2.2.1",
    "reflect-metadata": "0.1.13",
    "supertest": "6.1.6",
    "ts-jest": "27.0.5",
    "ts-loader": "9.2.6",
    "ts-node": "10.2.1",
    "tsconfig-paths": "3.11.0",
    "typescript": "4.4.3"
  },
  "scripts": {
    "coveralls": "npm run coverage --coverageReporters=text-lcov | coveralls",
    "build": "rm -rf ./dist && tsc --declaration -p tsconfig.build.json",
    "format": "prettier src/**/*.ts --ignore-path ./.prettierignore --write",
    "prepublish": "npm run format && npm run lint && npm run test && npm run test:e2e && npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:e2e": "jest --config ./test/jest-e2e.json",
    "lint": "eslint --ext .js,.jsx,.ts,.tsx src --color"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "src",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "coverageDirectory": "../coverage",
    "testEnvironment": "node"
  },
  "bugs": {
    "url": "https://github.com/Glosur/nest-actuator/issues"
  },
  "homepage": "https://github.com/Glosur/nest-actuator#readme",
  "directories": {
    "example": "examples"
  }
}