-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.38 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
{
"name": "usds-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "forge test -vvv",
"test-contract": "forge test -vvv --match-contract",
"test-file": "forge test -vvv --match-path",
"test-function": "forge test -vvv --match-test",
"install-pip-packages": "pip install -r pip-requirements.txt",
"install-husky": "husky install",
"prepare": "npm-run-all install-husky install-pip-packages",
"slither-analyze": "slither .",
"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",
"lint-contract": "solhint 'contracts/**/*.sol' -f table",
"lint-test-contract": "solhint 'test/**/*.sol' -f table",
"lint-contract:errors": "solhint 'contracts/**/*.sol' 'test/**/*.sol' -f table --quiet",
"prettier": "forge fmt",
"prettier-check": "forge fmt --check"
},
"keywords": [
"USDs",
"Vault"
],
"author": "Sperax Inc",
"license": "ISC",
"devDependencies": {
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"solhint": "^3.6.2"
},
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3"
}
}