{
  "name": "@mycrypto/ganache-toolbox",
  "version": "0.1.2",
  "author": "MyCrypto",
  "license": "MIT",
  "description": "A simple CLI to interact with MyCrypto Ganache",
  "repository": "https://github.com/MyCryptoHQ/ganache-toolbox.git",
  "main": "dist/index.js",
  "bin": {
    "ganache-toolbox": "dist/index.js"
  },
  "files": [
    "bin/",
    "src/"
  ],
  "keywords": [
    "cli",
    "ganache-toolbox"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "prebuild": "yarn clean",
    "build": "webpack --config ./webpack.config.js --progress --color --display-error-details",
    "clean": "rimraf dist",
    "start": "babel-node --extensions '.ts' ./src/index.ts",
    "validate": "npm-run-all --parallel lint tscheck",
    "test": "jest --config=jest_config/jest.config.json --maxWorkers=2",
    "test:coverage": "yarn test --coverage",
    "lint": "eslint . --ignore-path .gitignore --ext .ts,.js",
    "prettier": "prettier --write --config .prettierrc --config-precedence file-override",
    "tscheck": "tsc"
  },
  "dependencies": {
    "babel-polyfill": "6.26.0",
    "bn.js": "5.1.3",
    "chalk": "4.1.0",
    "inquirer": "7.3.3",
    "listr": "0.14.3",
    "rxjs": "6.1.0",
    "superagent": "3.8.3",
    "web3": "1.3.0",
    "yargs": "16.0.3",
    "yup": "0.29.3"
  },
  "devDependencies": {
    "@babel/cli": "7.0.0",
    "@babel/core": "7.0.0",
    "@babel/node": "7.0.0",
    "@babel/preset-env": "7.0.0",
    "@babel/preset-typescript": "7.0.0",
    "@types/inquirer": "7.3.1",
    "@types/jest": "22.2.3",
    "@types/listr": "0.14.2",
    "@types/node": "10.0.4",
    "@types/superagent": "3.5.8",
    "@types/yup": "0.29.7",
    "@typescript-eslint/eslint-plugin": "4.1.0",
    "@typescript-eslint/parser": "4.1.0",
    "babel-loader": "^8.0.0-beta.2",
    "babel-plugin-module-resolver": "4.0.0",
    "eslint": "7.8.1",
    "eslint-config-prettier": "6.11.0",
    "eslint-plugin-import": "2.22.0",
    "eslint-plugin-jest": "24.0.0",
    "husky": "4.3.0",
    "jasmine-marbles": "0.3.1",
    "jest": "26.0.1",
    "lint-staged": "10.4.0",
    "npm-run-all": "4.1.5",
    "prettier": "2.1.2",
    "rimraf": "2.6.2",
    "ts-jest": "24.3.0",
    "tsconfig-paths-webpack-plugin": "3.3.0",
    "typescript": "4.0.3",
    "utility-types": "3.10.0",
    "webpack": "4.8.0",
    "webpack-cli": "2.1.3",
    "webpack-node-externals": "1.7.2"
  },
  "lint-staged": {
    "./**/*.ts": [
      "yarn prettier",
      "yarn lint"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && yarn tscheck",
      "pre-push": "yarn test"
    }
  }
}
