-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "@soliditylabs/erc20-permit",
"version": "1.0.0",
"description": "Package for implementing the ERC20 permit (EIP-2612)",
"main": "index.js",
"scripts": {
"postinstall": "patch-package",
"test": "npx buidler --network localhost test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soliditylabs/ERC20-permit.git"
},
"keywords": [
"ERC20",
"ERC20-Permit",
"Permit",
"EIP-2612",
"Solidity"
],
"author": "Markus Waas (mail@markuswaas.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soliditylabs/ERC20-permit/issues"
},
"homepage": "https://github.com/soliditylabs/ERC20-permit#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.1.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/contracts": "^4.4.2",
"buidler-deploy": "^0.6.0-beta.16",
"chai": "^4.2.0",
"eth-permit": "^0.1.7",
"ethereum-waffle": "^3.1.1",
"ethereumjs-common": "^1.5.2",
"ethereumjs-tx": "^2.1.2",
"ganache-cli": "^6.11.0",
"patch-package": "^6.2.2",
"solc": "^0.7.2",
"web3": "^1.3.0"
},
"directories": {
"test": "test"
}
}