{
  "name": "steem-wise-cli",
  "version": "3.4.2",
  "description": "Vote delegation system for STEEM blockchain: cli tool for delegators",
  "main": "dist/index.js",
  "bin": {
    "wise": "./dist/index.js"
  },
  "engines": {
    "node": ">=10.15"
  },
  "scripts": {
    "check": "if echo \"$(node --version)\" | grep -q \"$(cat .nvmrc)\"; then echo \"Node version correct\"; else echo \"Node version does not match that in .nvmrc\" && exit 1; fi",
    "build:cleanbefore": "rm -rf dist",
    "build:lint": "tslint -c tslint.json -p tsconfig.lint.json",
    "build:node": "tsc",
    "build": "npm run check && npm run build:cleanbefore && npm run build:node && npm run build:lint",
    "prepare": "npm run build",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
    "commitmsg": "commitlint -E GIT_PARAMS",
    "test": "TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register --require source-map-support/register --recursive src/**/*.spec.test.ts",
    "verify": "TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register --require source-map-support/register --recursive src/**/*.integration.test.ts",
    "test-coverage": "nyc npm run test",
    "verify-coverage": "nyc npm run verify",
    "lint-fix": "tslint --fix -c tslint.json -p tsconfig.lint.json",
    "semantic-release": "semantic-release"
  },
  "dependencies": {
    "bluebird": "^3.5.2",
    "commander": "^2.18.0",
    "js-yaml": "^3.13.0",
    "lodash": "^4.17.11",
    "node-docker-watchdog": "^1.2.3",
    "ow": "^0.8.0",
    "prompt": "^1.0.0",
    "steem-wise-core": "^4.2.0",
    "universe-log": "^0.2.0"
  },
  "devDependencies": {
    "@commitlint/cli": "7.5.2",
    "@commitlint/config-conventional": "7.5.0",
    "@types/bluebird": "3.5.26",
    "@types/chai": "4.1.7",
    "@types/chai-as-promised": "7.1.0",
    "@types/js-yaml": "3.12.1",
    "@types/lodash": "4.14.123",
    "@types/mocha": "5.2.6",
    "@types/mock-fs": "3.6.30",
    "@types/nock": "9.3.1",
    "@types/node": "9.6.46",
    "@types/rimraf": "2.0.2",
    "@types/sinon": "7.0.11",
    "@types/uuid": "3.4.4",
    "chai": "4.2.0",
    "chai-as-promised": "7.1.1",
    "conventional-changelog-cli": "2.0.12",
    "husky": "1.3.1",
    "mocha": "6.0.2",
    "mock-fs": "4.8.0",
    "nock": "10.0.6",
    "nyc": "13.3.0",
    "rimraf": "2.6.3",
    "semantic-release": "16.0.0-beta.18",
    "sinon": "7.3.1",
    "stdio-mock--fork-by-wiseteam": "1.1.2",
    "ts-node": "8.0.3",
    "tslint": "5.11.0",
    "typescript": "3.4.1",
    "uuid": "3.3.2",
    "wise-tslint-configuration": "0.2.0"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "header-max-length": [
        0
      ],
      "scope-case": [
        0
      ]
    }
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "release": {},
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/*.spec.ts"
    ],
    "include": [
      "src/**/*.ts"
    ],
    "reporter": [
      "html"
    ],
    "all": true
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wise-team/steem-wise-cli.git"
  },
  "keywords": [
    "steem",
    "blockchain",
    "wise"
  ],
  "author": "The Wise Team (https://wise-team.io/)",
  "contributors": [
    "Jędrzej Lewandowski <jedrzejblew@gmail.com> (https://jedrzej.lewandowski.doctor/)"
  ],
  "license": "MIT",
  "homepage": "https://wise.vote/",
  "bugs": {
    "url": "https://github.com/wise-team/steem-wise-cli/issues"
  }
}
