-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
49 lines (49 loc) · 1.46 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
46
47
48
49
{
"name": "snekmate",
"version": "0.0.2",
"description": "State-of-the-art, highly opinionated, hyper-optimised, and secure Vyper smart contract building blocks.",
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
"license": "AGPL-3.0-only",
"keywords": [
"security",
"library",
"ethereum",
"smart-contracts",
"evm",
"vyper",
"vyper-contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pcaversaccio/snekmate.git"
},
"homepage": "https://github.com/pcaversaccio/snekmate#readme",
"bugs": {
"url": "https://github.com/pcaversaccio/snekmate/issues"
},
"scripts": {
"prettier:check": "npx prettier -c **/*.{md,sol,js,json,yml,yaml}",
"prettier:fix": "npx prettier -w **/*.{md,sol,js,json,yml,yaml}",
"solhint:check": "npx solhint '**/*.sol'",
"solhint:fix": "npx solhint '**/*.sol' --fix",
"lint:check": "yarn prettier:check && yarn solhint:check && npx eslint --ext .js .",
"lint:fix": "yarn prettier:fix && yarn solhint:fix && npx eslint --ext .js . --fix"
},
"files": [
"src/**/*.vy",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@openzeppelin/merkle-tree": "^1.0.5",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "^6.7.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2"
}
}