{
  "name": "@ethereum-waffle/provider",
  "description": "A mock provider for your blockchain testing needs.",
  "version": "3.4.4",
  "author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
  "repository": "git@github.com:EthWorks/Waffle.git",
  "private": false,
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "ethereum",
    "smart-contracts",
    "solidity",
    "testing",
    "javascript",
    "typescript",
    "library"
  ],
  "homepage": "https://github.com/EthWorks/Waffle",
  "bugs": {
    "url": "https://github.com/EthWorks/Waffle/issues"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.ts",
  "types": "dist/esm/index.d.ts",
  "scripts": {
    "prepublishOnly": "yarn build",
    "test": "mocha",
    "lint": "eslint '{src,test}/**/*.ts'",
    "lint:fix": "eslint --fix '{src,test}/**/*.ts'",
    "build": "rimraf ./dist && yarn build:esm && yarn build:cjs",
    "build:esm": "tsc -p tsconfig.build.json --outDir dist/esm --module ES6",
    "build:cjs": "tsc -p tsconfig.build.json --outDir dist/cjs --declaration false"
  },
  "engines": {
    "node": ">=10.0"
  },
  "dependencies": {
    "@ethereum-waffle/ens": "^3.4.4",
    "ethers": "^5.5.2",
    "ganache-core": "^2.13.2",
    "patch-package": "^6.2.2",
    "postinstall-postinstall": "^2.1.0"
  },
  "resolutions": {
    "web3": "1.2.4"
  },
  "devDependencies": {}
}
