forked from ensdomains/offchain-resolver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1004 Bytes
/
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
{
"name": "@ensdomains/offchain-resolver-contracts",
"version": "0.2.1",
"repository": "[email protected]:ensdomains/offchain-resolver.git",
"author": "Nick Johnson <[email protected]>",
"license": "MIT",
"files": [
"contracts/*.sol",
"artifacts/contracts/**/*.json"
],
"scripts": {
"test": "run() { npx hardhat test; }; run",
"lint": "npx hardhat check",
"start": "npx hardhat node",
"build": "npx hardhat compile",
"prepublishOnly": "yarn build",
"pub": "yarn publish --access public",
"clean": "rm -fr node_modules artifacts cache"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.1",
"hardhat-deploy": "^0.11.19"
},
"dependencies": {
"@ensdomains/ens-contracts": "^0.0.8",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"hardhat-deploy-ethers": "^0.3.0-beta.13"
}
}