-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "erc20permit",
"version": "0.1.1",
"description": "Solidity contracts implementing ERC2612",
"author": "Alberto Cuesta Cañada",
"engines": {
"node": ">= 10.12.0",
"npm": ">= 6.4.0",
"yarn": ">= 1.10.0"
},
"files": [
"/contracts/ERC20Permit.sol",
"/contracts/IERC2612.sol",
"/utils/signatures.ts"
],
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security"
],
"scripts": {
"build": "buidler compile",
"test": "buidler test test/*.ts",
"ganache": "./scripts/ganache.sh",
"deploy:ganache": "yarn ganache && truffle migrate",
"coverage": "buidler coverage --network coverage --temp build --testfiles 'test/*.ts'",
"lint:js": "prettier ./test/**/*.js --write",
"lint:sol": "solhint -f table contracts/**/*.sol"
},
"dependencies": {
"acc-erc20": "0.5.7"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.8",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.0.40",
"@types/mocha": "^8.0.0",
"acc-erc20": "0.5.7",
"buidler-gas-reporter": "0.1.4-beta.4",
"chai": "4.2.0",
"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.9",
"truffle": "^5.1.39",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertocuestacanada/ERC20Permit.git"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/albertocuestacanada/ERC20Permit/issues"
},
"homepage": "https://github.com/albertocuestacanada/ERC20Permit"}