{
  "name": "@xcritical/boltify",
  "version": "1.0.3",
  "description": "A tool for managing JavaScript projects with multiple packages based on Bolt.",
  "main": "index.js",
  "repository": "https://github.com/xcritical-software/monorepo-ci-tools.git",
  "author": "XCritical Software",
  "license": "MIT",
  "scripts": {
    "test": "jest --config=jest.config.js",
    "lint": "eslint --ext .ts src",
    "lint:fix": "yarn lint --fix",
    "compile": "gulp --cwd . compile",
    "build": "yarn clean && yarn compile",
    "deploy": "npm publish .publish  --access public",
    "check": "yarn lint && yarn test",
    "clean": "rimraf dist lib .publish",
    "re-install": "yarn clean && rd /s/q node_modules && yarn",
    "mono-ci": "node .publish/bin.js"
  },
  "bin": {
    "boltify": "./bin.js"
  },
  "private": false,
  "dependencies": {
    "@semantic-release/commit-analyzer": "^6.3.0",
    "bolt": "^0.23.6",
    "chalk": "^2.4.2",
    "columnify": "^1.5.4",
    "conventional-commits-parser": "^3.0.1",
    "execa": "^2.0.4",
    "meow": "^4.0.0",
    "p-locate": "^4.1.0",
    "semver": "^6.3.0"
  },
  "devDependencies": {
    "@types/jest": "^24.0.18",
    "@types/meow": "^4.0.0",
    "@types/node": "^12.7.3",
    "@types/semver": "^6.0.2",
    "@types/through2": "^2.0.34",
    "@xcritical/eslint-plugin-xc-front-lint": "^1.0.0",
    "@xcritical/xc-front-libs-utils": "^1.0.0",
    "jest": "^24.9.0",
    "jest-teamcity-reporter": "^0.9.0",
    "ts-jest": "^24.0.2",
    "lint-staged": "^9.2.5"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "yarn lint:fix",
      "git add"
    ]
  },
  "bolt": {
    "workspaces": [
      "testWorkspace/*",
      "testWorkspace2/*"
    ]
  }
}