-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@mojitoswap-libs/mojito-swap-farm",
"description": "🎛 Farm contracts for the mojito protocol",
"version": "0.1.0",
"homepage": "https://mojitoswap.finance",
"repository": {
"type": "git",
"url": "https://github.com/MojitoFinance/mojito-swap-farm.git"
},
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@openzeppelin/test-environment": "0.1.9",
"@openzeppelin/test-helpers": "0.5.11",
"chai": "4.3.4",
"mocha": "5.0.4",
"mochawesome": "4.1.0",
"prettier": "1.19.1",
"prettier-plugin-solidity": "1.0.0-alpha.45",
"solhint": "2.3.1",
"solhint-plugin-prettier": "0.0.4",
"solidity-coverage": "0.7.16",
"table": "6.7.1",
"truffle": "5.3.6"
},
"scripts": {
"compile": "truffle compile --all",
"deploy": "truffle deploy --reset --compile-all",
"deploy:network": "npm run deploy -- --network ",
"test": "truffle test",
"mocha": "npm run compile && mocha --exit --recursive",
"coverage": "truffle run coverage --solcoverjs ./.solcover.js",
"lint": "solhint contracts/**/*.sol"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@openzeppelin/contracts": "3.4.1",
"@truffle/hdwallet-provider": "1.4.0",
"ethers": "5.4.0"
}
}