-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "safe-multiguard",
"description": "The MultiGuard allows to manage multiple transaction guards",
"version": "1.0.0",
"keywords": [
"Ethereum",
"Safe",
"EthBerlin"
],
"scripts": {
"clean": "rimraf artifacts cache typechain deployments .nyc_output",
"compile": "hardhat compile",
"typechain": "ts-node ./scripts/generateTypechainFiles.ts",
"build": "yarn compile && yarn typechain",
"deploy": "hardhat deploy",
"test": "hardhat deploy && nyc hardhat test",
"format": "prettier --write \"{src,tests,scripts}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/germartinez/safe-multiguard.git"
},
"author": "Germán Martínez (@germartinez)",
"license": "MIT",
"homepage": "https://github.com/germartinez/safe-multiguard#readme",
"devDependencies": {
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"@types/yargs": "^17.0.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.2",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.4.7",
"hardhat": "^2.11.2",
"hardhat-deploy": "^0.11.15",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0",
"yargs": "^17.5.1"
}
}