-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 936 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": "@toucanprotocol/dynamic-fee-pools",
"version": "1.0.0",
"description": "A contract to calculate fees for deposits and redemptions in a pool based on the project composition in the pool",
"private": true,
"dependencies": {
"@openzeppelin/contracts": "4.6.0",
"@prb/math": "4.0.1"
},
"files": [
"/src/**/*.sol"
],
"scripts": {
"build": "forge install && forge build --via-ir",
"test": "forge test --via-ir"
},
"repository": {
"type": "git",
"url": "https://github.com/toucanprotocol/dynamic-fee-pools.git"
},
"author": "Toucan Protocol <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/toucanprotocol/dynamic-fee-pools/issues"
},
"homepage": "https://github.com/toucanprotocol/dynamic-fee-pools#readme",
"keywords": [
"solidity",
"smart",
"contracts",
"toucan",
"protocol",
"fees",
"calculator"
]
}