-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
67 lines (67 loc) · 1.85 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
62
63
64
65
66
67
{
"name": "erc3156-wrappers",
"version": "0.0.1",
"description": "ERC3156 wrapper contracts for popular flash lenders",
"author": "Alberto Cuesta Cañada",
"engines": {
"node": ">= 10.12.0",
"npm": ">= 6.4.0",
"yarn": ">= 1.10.0"
},
"files": [
"contracts",
"!contracts/mocks"
],
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security"
],
"scripts": {
"build": "hardhat compile",
"test": "hardhat test test/*.js",
"coverage": "hardhat coverage --network coverage --temp build --testfiles 'test/*.js'",
"lint:js": "prettier ./test/**/*.js --write",
"lint:sol": "solhint -f table contracts/**/*.sol"
},
"dependencies": {
"@openzeppelin/contracts": "3.3.0"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"hardhat": "^2.0.5",
"hardhat-gas-reporter": "^1.0.3",
"hardhat-deploy": "^0.7.0-beta.44",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"erc3156": "^0.4.7",
"ethereumjs-util": "^7.0.3",
"ethers": "^5.0.7",
"ganache-time-traveler": "^1.0.14",
"mocha": "^7.1.0",
"prettier": "^2.0.5",
"solhint": "^3.2.0",
"solidity-coverage": "0.7.14",
"truffle-flattener": "^1.5.0",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertocuestacanada/ERC20Flash.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/albertocuestacanada/ERC20Flash/issues"
},
"homepage": "https://github.com/albertocuestacanada/ERC20Flash"
}