forked from Sperax/Demeter-Protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 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
47
48
49
{
"name": "demeter-protocol",
"version": "1.0.0",
"description": "Demeter protocol allows anyone to launch an incentivised liquidity mining campaign on top of Uniswap v3",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"prepare": "husky install",
"lint-contract": "solhint 'contracts/**/*.sol' -f table",
"lint-test-contract": "solhint 'test/**/*.sol' -f table",
"prettier": "forge fmt",
"prettier-check": "forge fmt --check",
"slither-analyze": "slither .",
"test": "forge test -vvv",
"test-contract": "forge test -vvvv --match-contract",
"test-file": "forge test -vvv --match-path",
"test-function": "forge test -vvv --match-test",
"forge-coverage": "forge coverage --report lcov && lcov --remove ./lcov.info -o ./lcov.info 'test/*' && rm -rf ./coverage && genhtml lcov.info --output-dir coverage && mv lcov.info ./coverage"
},
"dependencies": {
"@cryptoalgebra/v1.9-directional-fee-periphery": "^1.0.1",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.3.0"
},
"devDependencies": {
"husky": "^8.0.3",
"solhint": "^3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sperax/Demeter-Protocol.git"
},
"keywords": [
"YieldFarming",
"UniswapV3",
"SPA",
"LP"
],
"author": "Sperax Inc",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sperax/Demeter-Protocol/issues"
},
"homepage": "https://github.com/Sperax/Demeter-Protocol#readme"
}