forked from pcaversaccio/snekmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
36
{
"name": "snekmate",
"version": "0.0.1",
"description": "State-of-the-art, highly opinionated, hyper-optimised, and secure Vyper smart contract building blocks.",
"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"
},
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"prettier:check": "prettier -c **/*.{md,sol,json,yml}",
"prettier:fix": "prettier -w **/*.{md,sol,json,yml}",
"solhint:check": "npx solhint '**/*.sol'",
"solhint:fix": "npx solhint '**/*.sol' --fix",
"lint:check": "yarn prettier:check && yarn solhint:check",
"lint:fix": "yarn prettier:fix && yarn solhint:fix"
},
"devDependencies": {
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23"
}
}