{
  "name": "hardhat",
  "version": "2.6.4",
  "author": "Nomic Labs LLC",
  "license": "SEE LICENSE IN LICENSE",
  "homepage": "https://hardhat.org",
  "repository": "github:nomiclabs/hardhat",
  "main": "internal/lib/hardhat-lib.js",
  "types": "internal/lib/hardhat-lib.d.ts",
  "description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.",
  "keywords": [
    "ethereum",
    "smart-contracts",
    "hardhat",
    "blockchain",
    "dapps",
    "javascript",
    "tooling",
    "task-runner",
    "solidity"
  ],
  "bin": {
    "hardhat": "internal/cli/cli.js"
  },
  "engines": {
    "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
  },
  "scripts": {
    "lint": "yarn prettier --check && yarn eslint",
    "lint:fix": "yarn prettier --write && yarn eslint --fix",
    "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
    "prettier": "prettier \"**/*.{js,md,json}\"",
    "test": "mocha --recursive \"test/**/*.ts\"",
    "test:except-tracing": "mocha --recursive \"test/**/*.ts\" --invert --grep \"Stack traces\"",
    "test:tracing": "mocha --recursive \"test/internal/hardhat-network/{helpers,stack-traces}/*.ts\"",
    "test:forking": "mocha --recursive \"test/internal/hardhat-network/{helpers,jsonrpc,provider}/*.ts\"",
    "build": "tsc --build .",
    "clean": "rimraf builtin-tasks internal types utils *.d.ts *.map *.js build-test tsconfig.tsbuildinfo"
  },
  "files": [
    "builtin-tasks/",
    "internal/",
    "sample-projects/",
    "src/",
    "types/",
    "utils/",
    "*.d.ts",
    "*.d.ts.map",
    "*.js",
    "*.js.map",
    "LICENSE",
    "README.md",
    "recommended-gitignore.txt",
    "console.sol"
  ],
  "devDependencies": {
    "@nomiclabs/eslint-plugin-hardhat-internal-rules": "^1.0.0",
    "@types/chai": "^4.2.0",
    "@types/chai-as-promised": "^7.1.3",
    "@types/ci-info": "^2.0.0",
    "@types/debug": "^4.1.4",
    "@types/find-up": "^2.1.1",
    "@types/fs-extra": "^5.1.0",
    "@types/glob": "^7.1.1",
    "@types/lodash": "^4.14.123",
    "@types/mocha": "^5.2.6",
    "@types/node": "^10.17.24",
    "@types/node-fetch": "^2.3.7",
    "@types/qs": "^6.5.3",
    "@types/resolve": "^1.17.1",
    "@types/semver": "^6.0.2",
    "@types/sinon": "^9.0.8",
    "@types/uuid": "^3.4.5",
    "@types/ws": "^7.2.1",
    "@typescript-eslint/eslint-plugin": "4.29.2",
    "@typescript-eslint/parser": "4.29.2",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "eslint": "^7.29.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-import": "2.24.1",
    "eslint-plugin-prettier": "3.4.0",
    "ethers": "^5.0.0",
    "mocha": "^7.1.2",
    "prettier": "2.3.2",
    "proxy": "^1.0.2",
    "rimraf": "^3.0.2",
    "sinon": "^9.0.0",
    "time-require": "^0.1.2",
    "ts-node": "^8.1.0",
    "typescript": "~4.0.3"
  },
  "dependencies": {
    "@ethereumjs/block": "^3.4.0",
    "@ethereumjs/blockchain": "^5.4.0",
    "@ethereumjs/common": "^2.4.0",
    "@ethereumjs/tx": "^3.3.0",
    "@ethereumjs/vm": "^5.5.2",
    "@ethersproject/abi": "^5.1.2",
    "@sentry/node": "^5.18.1",
    "@solidity-parser/parser": "^0.11.0",
    "@types/bn.js": "^5.1.0",
    "@types/lru-cache": "^5.1.0",
    "abort-controller": "^3.0.0",
    "adm-zip": "^0.4.16",
    "ansi-escapes": "^4.3.0",
    "chalk": "^2.4.2",
    "chokidar": "^3.4.0",
    "ci-info": "^2.0.0",
    "debug": "^4.1.1",
    "enquirer": "^2.3.0",
    "env-paths": "^2.2.0",
    "eth-sig-util": "^2.5.2",
    "ethereum-cryptography": "^0.1.2",
    "ethereumjs-abi": "^0.6.8",
    "ethereumjs-util": "^7.1.0",
    "find-up": "^2.1.0",
    "fp-ts": "1.19.3",
    "fs-extra": "^7.0.1",
    "glob": "^7.1.3",
    "https-proxy-agent": "^5.0.0",
    "immutable": "^4.0.0-rc.12",
    "io-ts": "1.10.4",
    "lodash": "^4.17.11",
    "merkle-patricia-tree": "^4.2.0",
    "mnemonist": "^0.38.0",
    "mocha": "^7.1.2",
    "node-fetch": "^2.6.0",
    "qs": "^6.7.0",
    "raw-body": "^2.4.1",
    "resolve": "1.17.0",
    "semver": "^6.3.0",
    "slash": "^3.0.0",
    "solc": "0.7.3",
    "source-map-support": "^0.5.13",
    "stacktrace-parser": "^0.1.10",
    "true-case-path": "^2.2.1",
    "tsort": "0.0.1",
    "uuid": "^3.3.2",
    "ws": "^7.4.6"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "dev-build",
      "sample-projects",
      "test",
      "coverage",
      ".nyc_output",
      "*.ts",
      "*.js",
      "internal",
      "builtin-tasks",
      "build-test"
    ],
    "reporter": [
      "text",
      "lcovonly"
    ],
    "all": true
  }
}
