@nomiclabs/hardhat-truffle5
Version:
Truffle 5 Hardhat compatibility plugin
73 lines • 2.14 kB
JSON
{
"name": "@nomiclabs/hardhat-truffle5",
"version": "2.1.0",
"description": "Truffle 5 Hardhat compatibility plugin",
"repository": "github:nomiclabs/hardhat",
"homepage": "https://github.com/nomiclabs/hardhat/tree/main/packages/hardhat-truffle5",
"author": "Nomic Labs LLC",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"truffle",
"truffle-contract"
],
"files": [
"dist/src",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@nomiclabs/truffle-contract": "^4.2.23",
"@types/chai": "^4.2.0",
"chai": "^4.2.0",
"ethereumjs-util": "^7.1.4",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.1.0",
"@types/fs-extra": "^5.1.0",
"@types/glob": "^7.1.1",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"chai": "^4.2.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mocha": "10.4.1",
"eslint-plugin-prettier": "3.4.0",
"hardhat": "^2.26.0",
"mocha": "^10.0.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typescript": "~5.0.0",
"web3": "^1.0.0-beta.36",
"web3-eth-abi": "1.10.4",
"web3-utils": "1.10.4",
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "^1.0.2",
"@nomicfoundation/eslint-plugin-slow-imports": "^1.0.0"
},
"peerDependencies": {
"@nomiclabs/hardhat-web3": "^2.1.0",
"hardhat": "^2.26.0",
"web3": "^1.0.0-beta.36"
},
"scripts": {
"lint": "pnpm prettier --check && pnpm eslint",
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
"eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "prettier \"**/*.{js,md,json}\"",
"pretest": "cd ../.. && pnpm build",
"test": "mocha --recursive \"test/**/*.ts\" --exit",
"build": "tsc --build .",
"clean": "rimraf dist"
}
}