This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "hardhat-etherscan-abi",
"version": "0.3.0",
"description": "Hardhat plugin fetching contract ABI from etherscan",
"repository": "github:poma/hardhat-etherscan-abi",
"homepage": "https://github.com/poma/hardhat-etherscan-abi",
"author": "Roman Semenov <[email protected]>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"etherscan"
],
"scripts": {
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"test": "mocha test/**/*.test.ts --exit",
"build": "tsc",
"watch": "tsc -w"
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@ethersproject/address": "^5.0.2",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2-rc.1",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.38",
"@types/node-fetch": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"ethers": "^5.0.8",
"hardhat": "^2.0.4",
"mocha": "^5.2.0",
"prettier": "^2.0.5",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2-rc.1",
"hardhat": "^2.0.0"
}
}