-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
41
42
43
44
45
{
"name": "serpentor",
"version": "0.1.0",
"description": "A set of smart contracts tools for governance written in vyper",
"keywords": [
"security",
"library",
"ethereum",
"smart-contracts",
"evm",
"vyper",
"vyper-contracts",
"foundry"
],
"repository": {
"type": "git",
"url": "git+https://github.com/storming0x/serpentor.git"
},
"homepage": "https://github.com/storming0x/serpentor#readme",
"bugs": {
"url": "https://github.com/storming0x/serpentor/issues"
},
"author": " storming0x <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"prettier:check": "prettier -c **/*.{md,sol,yml}",
"prettier:fix": "prettier -w **/*.{md,sol,yml}",
"solhint:check": "npx solhint '**/*.sol'",
"solhint:fix": "npx solhint '**/*.sol' --fix",
"lint:check": "yarn prettier:check && yarn solhint:check && eslint .",
"lint:fix": "yarn prettier:fix && yarn solhint:fix && eslint . --fix"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "^5.6.9",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.32",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
},
"dependencies": {
"hardhat": "^2.10.1"
}
}