forked from Uniswap/advanced-weth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "advanced-weth",
"version": "1.0.0",
"description": "Wrapped WETH contract that adds advanced functionality to WETH",
"author": "Moody Salem",
"devDependencies": {
"@truffle/hdwallet-provider": "^1.0.35",
"bn.js": "^5.1.1",
"canonical-weth": "^1.4.0",
"truffle": "^5.1.26"
},
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"deploy": "truffle migrate -f 2 -to 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moodysalem/advanced-weth.git"
},
"files": [
"build/contracts/AdvancedWETH.json",
"build/contracts/IAdvancedWETH.json",
"build/contracts/IWETH9.json",
"contracts/AdvancedWETH.sol",
"contracts/interfaces"
],
"keywords": [
"smart",
"contract",
"advanced",
"ether",
"wrap",
"wrapped",
"WETH",
"advanced",
"utility"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/moodysalem/advanced-weth/issues"
},
"homepage": "https://github.com/moodysalem/advanced-weth#readme"
}