{
  "name": "hardhat-chainlink",
  "version": "0.2.4",
  "description": "Integrates Chainlink into Hardhat projects",
  "repository": "https://github.com/andrejrakic/hardhat-chainlink.git",
  "homepage": "https://github.com/andrejrakic/hardhat-chainlink/blob/main/DOCUMENTATION.md",
  "author": "Andrej Rakic",
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "chainlink",
    "smart-contracts",
    "hardhat",
    "hardhat-plugin"
  ],
  "scripts": {
    "lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
    "lint": "tslint --config tslint.json --project tsconfig.json",
    "test": "mocha --exit --recursive 'test/**/*.test.ts'",
    "copy": "mkdir -p dist/src/tasks && cp src/setup/Dockerfile dist && cp src/setup/docker-compose.yaml dist && cp src/setup/env.template dist/src/tasks/.env && cp -r artifacts dist && cp -r cache dist",
    "build": "tsc --project tsconfig.json && hardhat compile && npm run copy",
    "watch": "tsc -w --project tsconfig.json",
    "prepublishOnly": "npm run build",
    "postinstall": "typechain --target ethers-v5 './src/abis/*.json'"
  },
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "README.md",
    "DOCUMENTATION.md"
  ],
  "devDependencies": {
    "@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
    "@nomicfoundation/hardhat-network-helpers": "^1.0.6",
    "@nomicfoundation/hardhat-toolbox": "^1.0.2",
    "@nomiclabs/hardhat-ethers": "^2.1.0",
    "@nomiclabs/hardhat-etherscan": "^3.1.2",
    "@typechain/ethers-v5": "^10.1.1",
    "@typechain/hardhat": "^6.1.4",
    "@types/chai": "^4.1.7",
    "@types/fs-extra": "^5.0.4",
    "@types/mocha": "^5.2.6",
    "@types/node": "^8.10.38",
    "@types/uuid": "^8.3.4",
    "chai": "^4.2.0",
    "ethers": "^5.6.9",
    "hardhat": "^2.0.0",
    "hardhat-gas-reporter": "^1.0.9",
    "mocha": "^7.1.2",
    "prettier": "2.0.5",
    "solidity-coverage": "^0.7.22",
    "ts-node": "^8.1.0",
    "tslint": "^5.16.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-plugin-prettier": "^2.0.1",
    "typechain": "^8.1.1",
    "typechain-target-ethers-v5": "^5.0.1",
    "typescript": "^4.0.3",
    "uuid": "^9.0.0"
  },
  "dependencies": {
    "axios": "^1.1.3",
    "docker-compose": "^0.23.17"
  },
  "peerDependencies": {
    "hardhat": "^2.0.0"
  }
}
