-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
35 lines (35 loc) · 934 Bytes
/
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
{
"name": "@airswap/batch-call",
"version": "5.0.0",
"description": "AirSwap: Balance, Allowance, Validity Checks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-protocols"
},
"files": [
"./build",
"./typechain",
"./deploys*"
],
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
"typechain": "tsc -b",
"coverage": "hardhat coverage",
"test": "hardhat test",
"test:ci": "hardhat test",
"deploy": "hardhat run ./scripts/deploy.js",
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/swap": "5.0.0",
"@airswap/swap-erc20": "5.0.0",
"@openzeppelin/contracts": "^4.8.3"
},
"publishConfig": {
"access": "public"
}
}