{
  "name": "ethereum-waffle",
  "description": "Sweeter, faster and simpler than truffle.",
  "version": "4.0.10",
  "author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
  "repository": "git@github.com:EthWorks/Waffle.git",
  "private": false,
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "keywords": [
    "ethereum",
    "smart-contracts",
    "solidity",
    "compiler",
    "testing",
    "javascript",
    "typescript",
    "library"
  ],
  "homepage": "https://github.com/EthWorks/Waffle",
  "bugs": {
    "url": "https://github.com/EthWorks/Waffle/issues"
  },
  "main": "dist/cjs/src/index.js",
  "module": "dist/esm/src/index.ts",
  "types": "dist/esm/src/index.d.ts",
  "bin": {
    "waffle": "./bin/waffle"
  },
  "engines": {
    "node": ">=10.0"
  },
  "dependencies": {
    "@ethereum-waffle/chai": "4.0.10",
    "@ethereum-waffle/compiler": "4.0.3",
    "@ethereum-waffle/mock-contract": "4.0.4",
    "@ethereum-waffle/provider": "4.0.5",
    "solc": "0.8.15",
    "typechain": "^8.0.0"
  },
  "devDependencies": {
    "ethers": "5.6.2",
    "openzeppelin-solidity": "2.3.0",
    "mocha": "^8.2.1",
    "rimraf": "^3.0.2",
    "typescript": "^4.6.2",
    "eslint": "^7.14.0",
    "ts-node": "^9.0.0"
  },
  "peerDependencies": {
    "ethers": "*"
  },
  "scripts": {
    "test:buildonly": "ts-node -T buildTestContracts",
    "test:nobuild": "mocha",
    "test": "yarn test:buildonly && yarn test:nobuild",
    "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",
    "clean": "rimraf ./dist ./test/example/build"
  }
}