UNPKG

@nomiclabs/hardhat-waffle

Version:

Hardhat plugin to test smart contracts with Waffle

72 lines (71 loc) 2.01 kB
{ "name": "@nomiclabs/hardhat-waffle", "version": "2.0.6", "description": "Hardhat plugin to test smart contracts with Waffle", "homepage": "https://github.com/NomicFoundation/hardhat-waffle", "repository": "github:NomicFoundation/hardhat-waffle", "author": "Nomic Labs LLC", "license": "MIT", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "keywords": [ "ethereum", "smart-contracts", "hardhat", "hardhat-plugin", "ethers.js" ], "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\" --exit", "build": "tsc --build .", "prepublishOnly": "yarn build", "clean": "rimraf dist", "version": "yarn changeset version" }, "files": [ "dist/src/", "src/", "LICENSE", "README.md" ], "devDependencies": { "@changesets/cli": "^2.25.2", "@nomiclabs/hardhat-ethers": "^2.0.0", "@types/chai": "^4.2.0", "@types/fs-extra": "^5.1.0", "@types/mocha": "^9.1.0", "@types/node": "^18.11.9", "@types/sinon-chai": "^3.2.3", "@types/web3": "1.0.19", "@typescript-eslint/eslint-plugin": "4.29.2", "@typescript-eslint/parser": "4.29.2", "chai": "^4.2.0", "eslint": "^7.29.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-import": "2.24.1", "eslint-plugin-prettier": "3.4.0", "ethereum-waffle": "^4.0.10", "ethers": "^5.0.0", "fs-extra": "^10.1.0", "hardhat": "^2.0.0", "mocha": "^10.0.0", "prettier": "2.4.1", "rimraf": "^3.0.2", "ts-node": "^8.1.0", "typescript": "~4.5.2" }, "peerDependencies": { "@nomiclabs/hardhat-ethers": "^2.0.0", "@types/sinon-chai": "^3.2.3", "ethereum-waffle": "*", "ethers": "^5.0.0", "hardhat": "^2.0.0" }, "publishConfig": { "access": "public" } }