@ethereum-waffle/provider
Version:
A mock provider for your blockchain testing needs.
63 lines • 1.57 kB
JSON
{
"name": "@ethereum-waffle/provider",
"description": "A mock provider for your blockchain testing needs.",
"version": "4.0.5",
"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",
"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",
"engines": {
"node": ">=10.0"
},
"dependencies": {
"@ethereum-waffle/ens": "4.0.3",
"@ganache/ethereum-options": "0.1.4",
"debug": "^4.3.4",
"ganache": "7.4.3"
},
"resolutions": {
"web3": "1.2.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"eslint": "^7.14.0",
"ethers": "5.6.2",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"peerDependencies": {
"ethers": "*"
},
"scripts": {
"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"
}
}