-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "damn-vulnerable-defi-foundry-version",
"version": "1.0.0",
"description": "Damn Vulnerable DeFi Foundry Version",
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry.git"
},
"keywords": [
"Forge",
"Solidity",
"Foundry",
"CTF",
"Smart contracts"
],
"author": "Nicolás García",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry/issues"
},
"homepage": "https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry#readme",
"scripts": {
"format": "prettier --write 'src/**/*.sol'",
"format:check": "prettier --check 'src/**/*.sol'",
"lint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"lint:check": "solhint --config ./.solhint.json 'src/**/*.sol'",
"lint-format": "yarn format && yarn lint",
"lint-format:check": "yarn format:check && yarn lint:check"
},
"devDependencies": {
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6"
}
}