{
  "name": "hardhat-preprocessor",
  "version": "0.1.5",
  "description": "Hardhat plugin that can preprocess contracts without writing to filesystem",
  "repository": "github:wighawag/hardhat-preprocessor",
  "author": "Ronan Sandford",
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "ethereum",
    "smart-contracts",
    "hardhat",
    "hardhat-plugin"
  ],
  "files": [
    "dist/src/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/fs-extra": "^5.0.4",
    "@types/glob": "^7.2.0",
    "@types/mocha": "^5.2.5",
    "@types/node": "^8.10.38",
    "@typescript-eslint/eslint-plugin": "^3.9.1",
    "@typescript-eslint/parser": "^3.9.1",
    "chai": "^4.2.0",
    "dotenv": "^6.2.0",
    "eslint": "^7.7.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.4",
    "fs-extra": "^9.0.1",
    "hardhat": "^2.0.9",
    "mocha": "^5.2.0",
    "prettier": "^2.0.5",
    "prettier-plugin-solidity": "^1.0.0-alpha.57",
    "source-map-support": "^0.5.12",
    "ts-node": "^8.1.0",
    "typescript": "^3.4.5"
  },
  "peerDependencies": {
    "hardhat": "^2.0.5"
  },
  "scripts": {
    "prepare": "node ./.setup.js",
    "lint:fix": "eslint --fix .",
    "lint": "eslint .",
    "test": "mocha --exit",
    "build": "tsc",
    "watch": "tsc -w",
    "publish:next": "npm publish --tag next",
    "publish:release": "npm publish",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "murmur-128": "^0.2.1"
  }
}
