forked from airswap/airswap-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 926 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
36
{
"name": "@airswap/staking",
"version": "4.2.2",
"description": "AirSwap: Stake Tokens",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-protocols"
},
"files": [
"./build",
"./typechain",
"./deploys.js",
"./deploys-blocks.js",
"./deploys.js.d.ts"
],
"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"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@airswap/utils": "4.3.3",
"@openzeppelin/contracts": "^4.8.3",
"prompt-confirm": "^2.0.4"
}
}