-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 995 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
{
"name": "tap-contracts",
"description": "Contracts for TAP protocol for collateral",
"author": "Bryan Cole <[email protected]>",
"license": "Apache-2.0",
"version": "0.0.1",
"files": [
"src/**/*.sol"
],
"repository": {
"type": "git",
"url": "git+https://github.com/semiotic-ai/tap-contracts.git"
},
"devDependencies": {
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.0",
"solhint-plugin-prettier": "^0.0.5"
},
"scripts": {
"install-libs": "make install-libs",
"update-libs": "make update-libs",
"install-solc": "make install-solc",
"build": "make build",
"test": "make test",
"gas-snapshot": "make gas-snapshot",
"clean": "make clean",
"fork-mainnet": "make fork-mainnet",
"chmod-scripts": "make chmod-scripts",
"lint": "solhint 'src/**/*.sol'",
"lint:fix": "yarn prettier && solhint --fix 'src/**/*.sol'",
"prettier": "prettier --write 'src/**/*.sol'"
}
}