-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "hardhat-etherscan-contract-cloner",
"version": "1.0.6",
"description": "Hardhat plugin for cloning contracts from ethereum using etherscan",
"repository": {
"type": "git",
"url": "https://github.com/TucksonDev/hardhat-etherscan-contract-cloner"
},
"homepage": "https://github.com/TucksonDev/hardhat-etherscan-contract-cloner#readme",
"author": "Tuckson",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"hardhat-plugin",
"etherscan",
"clone"
],
"scripts": {
"lint:fix": "prettier --write 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"test": "mocha --exit --recursive 'test/**/*.test.ts'",
"build": "tsc --build",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"peerDependencies": {
"hardhat": "^2.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
}
}