{
  "name": "moleculer-decorators",
  "version": "1.3.0",
  "description": "decorators for moleculer",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "clean": "rimraf dist/*",
    "tsc": "tsc",
    "lint": "tslint -p tsconfig.json",
    "compile": "npm run clean && tsc && node dist/index.js",
    "dev": "nodemon --delay 2000 -e ts --exec \"npm run compile\"",
    "test": "jest --coverage --forceExit --detectOpenHandles",
    "preversion": "npm run lint && npm run tsc && npm run test",
    "postversion": "git push && git push --follow-tags"
  },
  "author": "Colonelbundy <colonelbundy@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ColonelBundy/moleculer-decorators.git"
  },
  "keywords": [
    "microservices",
    "microservice",
    "decorator",
    "es6",
    "typescript",
    "moleculer"
  ],
  "bugs": {
    "url": "https://github.com/ColonelBundy/moleculer-decorators/issues"
  },
  "homepage": "https://github.com/ColonelBundy/moleculer-decorators#readme",
  "dependencies": {
    "moleculer": "^0.14.0"
  },
  "devDependencies": {
    "@types/jest": "^25.1.2",
    "@types/node": "^12.12.26",
    "@types/supertest": "^2.0.8",
    "jest": "^24.9.0",
    "moleculer-db": "^0.8.5",
    "moleculer-web": "^0.9.1",
    "nodemon": "^2.0.2",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^3.0.2",
    "supertest": "^4.0.2",
    "ts-jest": "^25.2.0",
    "tslint": "^6.0.0",
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "^3.7.5"
  },
  "jest": {
    "testEnvironment": "node",
    "rootDir": "./services",
    "roots": [
      "../test"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": ".*\\.(test|spec).(ts|js)$",
    "globals": {
      "ts-jest": {
        "tsConfig": "./tsconfig.json"
      }
    },
    "setupFiles": [],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
