-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 964 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
35
36
37
38
{
"name": "forge-erc20-template",
"version": "1.0.0",
"description": "Forge Template for ERC-20 using Openzeppelin Contracts",
"directories": {
"lib": "lib"
},
"scripts": {
"setup": "make clean && make build",
"sync": "make update",
"test": "make test",
"snapshot": "make snapshot",
"lint": "make lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soliditylabs/forge-erc20-template.git"
},
"keywords": [
"forge",
"template",
"erc20",
"openzeppelin",
"Solidity"
],
"author": "Markus Waas ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/soliditylabs/forge-erc20-template/issues"
},
"homepage": "https://github.com/soliditylabs/forge-erc20-template#readme",
"devDependencies": {
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
}
}