-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "@beanstalk/wells",
"version": "1.3.1",
"description": "A [{Well}](/src/Well.sol) is a constant function AMM that allows the provisioning of liquidity into a single pooled on-chain liquidity position.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"prepare": "husky install",
"t": ". ./script/bin/env.sh; forge t -vvv",
"deploy:local": ". ./script/bin/env.sh; ./script/bin/deploy-local.sh",
"compare": "forge snapshot --match-path test/integration/IntegrationTestGasComparisons.sol --snap .dex-comparisons",
"compare:check": "yarn compare --check",
"compare:csv": "node ./script/dex-comparisons.js",
"test": "forge t -vvv --ffi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeanstalkFarms/Wells.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BeanstalkFarms/Wells/issues"
},
"homepage": "https://github.com/BeanstalkFarms/Wells#readme",
"devDependencies": {
"husky": "8.0.3"
},
"lint-staged": {
"*.sol": "forge fmt"
}
}