{
  "name": "@depthlabs/nestjs-state-machine",
  "version": "0.0.2",
  "description": "Finite State Machine for Nestjs framework",
  "author": "Tomasz Felczyk",
  "license": "MIT",
  "url": "https://github.com/depthlabs-io/nestjs-state-machine",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "rimraf -rf dist && tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json -w",
    "lint": "eslint 'lib/**/*.ts' --fix",
    "prepublish:npm": "npm run build",
    "publish:npm": "npm publish --access public",
    "prepublish:next": "npm run build",
    "publish:next": "npm publish --access public --tag next",
    "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
    "prerelease": "npm run build",
    "release": "release-it"
  },
  "dependencies": {
    "@nestjs/event-emitter": "0.0.2"
  },
  "devDependencies": {
    "@nestjs/common": "7.6.5",
    "@nestjs/core": "7.6.5",
    "@nestjs/platform-express": "7.6.5",
    "@nestjs/testing": "7.6.5",
    "@types/jest": "26.0.20",
    "@types/node": "7.10.8",
    "@typescript-eslint/eslint-plugin": "4.12.0",
    "@typescript-eslint/parser": "4.12.0",
    "eslint": "7.17.0",
    "eslint-config-prettier": "7.1.0",
    "eslint-plugin-import": "2.22.1",
    "husky": "4.3.7",
    "jest": "26.6.3",
    "lint-staged": "10.5.3",
    "prettier": "2.2.1",
    "reflect-metadata": "0.1.13",
    "release-it": "14.2.2",
    "rimraf": "3.0.2",
    "rxjs": "6.6.3",
    "ts-jest": "26.4.4",
    "typescript": "4.1.3"
  },
  "peerDependencies": {
    "@nestjs/common": "^7.0.0",
    "reflect-metadata": "^0.1.12",
    "rxjs": "^6.0.0"
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/depthlabs-io/nestjs-state-machine"
  }
}
