{
  "name": "flow-mono-cli",
  "version": "1.5.3",
  "private": false,
  "author": "Immonet dev team <aegaeon@immonet.de> (https://immonet.de)",
  "license": "MIT",
  "description": "A command line interface that aims to solve a few issues while working with flow typed codebases in a mono-repo.",
  "bin": {
    "flow-mono": "./bin/flow-mono"
  },
  "engines": {
    "node": ">=8.11.4",
    "yarn": ">=1.6.0"
  },
  "files": [
    "dist",
    "bin"
  ],
  "keywords": [
    "flow",
    "mono",
    "mono-repo",
    "cli",
    "stub",
    "typing",
    "lerna",
    "workspaces",
    "workspace",
    "yarn"
  ],
  "scripts": {
    "test": "jest",
    "integTest": "./examples/run.sh",
    "clean": "rimraf dist node_modules flow-typed",
    "build": "babel src --out-dir dist --ignore spec.js && flow-copy-source -v src dist --ignore='*.spec.js'",
    "dev": "nodemon --quiet --watch src --exec 'yarn build'",
    "flow": "flow",
    "flow-typed": "flow-typed",
    "flow-typed-install": "flow-typed install --ignoreDeps=peer --overwrite",
    "prepare": "yarn flow-typed-install || true",
    "lint": "eslint src",
    "prettier": "prettier --write src/**/*.js",
    "prepublishOnly": "yarn build",
    "release": "semantic-release"
  },
  "dependencies": {
    "cosmiconfig": "6.0.0",
    "debug-logger": "0.4.1",
    "execa": "3.4.0",
    "find-up": "4.1.0",
    "glob": "7.1.6",
    "inquirer": "7.0.3",
    "jest-worker": "^24.9.0",
    "lodash.merge": "4.6.2",
    "micromatch": "4.0.2",
    "ora": "4.0.3",
    "yargs": "15.1.0"
  },
  "devDependencies": {
    "@babel/cli": "7.8.0",
    "@babel/core": "7.8.0",
    "@babel/preset-flow": "7.8.0",
    "@immowelt/eslint-config-immowelt-base": "1.3.0",
    "@immowelt/jest-preset-node": "1.1.1",
    "eslint": "6.8.0",
    "eslint-plugin-compat": "3.3.0",
    "eslint-plugin-flowtype": "4.6.0",
    "eslint-plugin-import": "2.20.0",
    "flow-bin": "0.115.0",
    "flow-copy-source": "2.0.9",
    "flow-typed": "2.6.2",
    "jest": "24.9.0",
    "prettier": "1.19.1",
    "rimraf": "3.0.0",
    "semantic-release": "15.13.31"
  },
  "jest": {
    "preset": "@immowelt/jest-preset-node"
  },
  "publishConfig": {
    "access": "public"
  },
  "release": {
    "analyzeCommits": {
      "releaseRules": [
        {
          "type": "BREAKING",
          "release": "major"
        },
        {
          "type": "FEATURE",
          "release": "minor"
        },
        {
          "type": "BUGFIX",
          "release": "patch"
        }
      ]
    },
    "branch": "master"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ImmoweltGroup/flow-mono-cli.git"
  }
}
