-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "@clrfund/waffle-mock-contract",
"version": "0.0.11",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn build:sol && yarn build:esm && yarn build:cjs && yarn test",
"build:sol": "hardhat compile",
"build:esm": "tsc -p tsconfig.json --outDir dist/esm --module ES6",
"build:cjs": "tsc -p tsconfig.json --outDir dist/cjs",
"test": "hardhat test",
"clean": "rm -rf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clrfund/waffle-mock-contract.git"
},
"export": {
"import": "dist/esm/src/index.js",
"default": "dist/cjs/src/index.js"
},
"dependencies": {
"ethers": "^6.12.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@typechain/ethers-v6": "^0.5.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.0",
"chai": "^4.2.0",
"hardhat": "^2.19.4",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^4.9.5"
}
}