{
  "name": "yaroslav-007",
  "version": "1.0.5",
  "description": "Developer tooling for running Local Hedera Network (Consensus + Mirror Nodes).",
  "main": "index.ts",
  "scripts": {
    "test:readiness": "node --loader ts-node/esm src/utils/testNode.js",
    "build": "rimraf ./build && tsc",
    "start": "npm run build && node ./build/index.js start",
    "restart": "npm run build && node ./build/index.js restart",
    "stop": "npm run build && node ./build/index.js stop",
    "generate-accounts": "npm run build && node ./build/index.js generate-accounts",
    "test:smoke": "npm --prefix test/smoke run test",
    "prepare": "husky install",
    "lint": "eslint src/**/*.ts",
    "lint-fix": "eslint --fix src/**/*.ts",
    "pretty": "prettier --write 'src/**/*.ts'",
    "precommit": "npm run pretty",
    "prepush": "npm run lint",
    "prepublishOnly": "npm run build",
    "test": "nyc ts-mocha ./test/unit/**/*.spec.ts"
  },
  "bin": {
    "hedera": "./build/index.js"
  },
  "keywords": [
    "hedera",
    "hedera-local"
  ],
  "homepage": "https://github.com/yaroslav-limechain/release-npm",
  "repository": "git@github.com:yaroslav-limechain/release-npm.git",
  "author": "Yaroslav",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/blessed": "^0.1.24",
    "@types/chai": "^4.3.11",
    "@types/detect-port": "^1.3.5",
    "@types/dockerode": "^3.3.21",
    "@types/expect": "^24.3.0",
    "@types/js-yaml": "^4.0.8",
    "@types/mocha": "^10.0.6",
    "@types/shelljs": "^0.8.14",
    "@types/sinon": "^17.0.3",
    "@types/yargs": "^17.0.28",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "chai": "^4.3.6",
    "eslint": "^8.51.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "husky": "^8.0.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "prettier": "^3.0.3",
    "sinon": "^14.0.0",
    "typescript": "^5.3.3"
  },
  "dependencies": {
    "@hashgraph/sdk": "^2.41.0",
    "blessed": "^0.1.81",
    "blessed-terminal": "^0.1.22",
    "csv-parser": "^3.0.0",
    "detect-port": "^1.5.1",
    "dockerode": "^4.0.2",
    "dotenv": "^16.3.1",
    "ethers": "^6.11.1",
    "js-yaml": "^4.1.0",
    "rimraf": "^5.0.5",
    "semver": "^7.5.4",
    "shelljs": "^0.8.5",
    "ts-mocha": "^9.0.0",
    "yargs": "^17.7.2"
  },
  "nyc": {
    "check-coverage": false,
    "reporter": [
      "html",
      "lcov",
      "text",
      "text-summary"
  ],
  "report-dir": "coverage"
  }
}
