forked from rmeissner/hardhat-safe-deployer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.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
{
"name": "hardhat-safe-deployer",
"version": "1.0.0",
"description": "Hardhat plugin to deploy via Safe",
"homepage": "https://github.com/rmeissner/hardhat-safe-deployer/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "yarn rimraf dist && tsc",
"deploy": "hardhat deploy --network",
"verify": "hardhat etherscan-verify --force-license --license LGPL-3.0 --network",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmeissner/hardhat-safe-deployer.git"
},
"keywords": [
"Ethereum",
"Hardhat",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/rmeissner/hardhat-safe-deployer/issues"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"hardhat": "^2.2.1",
"husky": "^5.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"hardhat": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0"
},
"dependencies": {
"@types/yargs": "^15.0.10",
"argv": "^0.0.2",
"axios": "^0.21.1",
"dotenv": "^8.0.0",
"ethers": "^5.1.4",
"solc": "0.7.6",
"yargs": "^16.1.1"
}
}