-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hardhat-helpers",
"version": "0.1.76",
"description": "Test helpers for Hardhat.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn typechain && tsc",
"lint": "yarn lint:prettier && yarn lint:eslint && cd test && yarn lint",
"lint:prettier": "prettier --write \"**/*.{json,md,sol,yml,ts}\"",
"lint:eslint": "eslint --fix --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .ts .",
"manifest": "npm pack --dry-run --json | ts-node scripts/writeManifest.ts",
"prepPublish": "rm -rf ./dist && yarn && yarn build && cd test && yarn && yarn build && yarn test && yarn testScript && cd .. && yarn manifest",
"typechain": "typechain --target ethers-v5 --out-dir ./src/typechain ./abis/**/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HardlyDifficult/hardhat-helpers.git"
},
"author": "HardlyDifficult",
"license": "MIT",
"bugs": {
"url": "https://github.com/HardlyDifficult/hardhat-helpers/issues"
},
"homepage": "https://github.com/HardlyDifficult/hardhat-helpers#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.12",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "3.1.8",
"@openzeppelin/contracts": "5.1.0",
"@typechain/ethers-v5": "10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/chai": "4.3.11",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.10",
"@types/readable-stream": "4.0.18",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "4.5.0",
"eslint": "8.57.1",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"ethers": "5.7.2",
"fs": "0.0.1-security",
"hardhat": "2.19.5",
"hardhat-gas-reporter": "1.0.10",
"hardhat-tracer": "2.7.0",
"mocha": "11.0.1",
"prettier": "3.4.2",
"prettier-plugin-solidity": "1.4.1",
"solhint": "5.0.3",
"solidity-coverage": "0.8.14",
"ts-node": "10.9.2",
"tsc": "2.0.4",
"typechain": "8.3.2",
"typescript": "5.5.4"
},
"peerDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"chai": "^4.3.0",
"ethers": "^5.6.0",
"hardhat": "^2.0.0"
}
}