-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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": "ahoj-mix-v1-contracts",
"version": "1.0.0",
"description": "Smart contract for interacting with Ahoj.Mix V1",
"main": "index.js",
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"pretest": "yarn compile",
"test": "npx hardhat test",
"deploy": "npx hardhat run scripts/deploy.js",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bayroio/ahoj-mix-v1-contracts.git"
},
"keywords": [
"bayro",
"ahoj",
"ahoj.mix",
"defi",
"dex"
],
"author": "Edgar Herrador <edgar@bayro.io>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/bayroio/ahoj-mix-v1-contracts/issues"
},
"homepage": "https://www.ahoj.finance/",
"engines": {
"node": ">=10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"hardhat": "^2.1.2"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1"
}
}