-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "splitter",
"version": "1.0.0",
"description": "Smart Contract to split ethereum to two different address equally.",
"homepage": "https://github.com/remedcu/Splitter#readme",
"bugs": {
"url": "https://github.com/remedcu/Splitter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remedcu/Splitter.git"
},
"license": "ISC",
"author": "Shebin John",
"directories": {
"test": "test"
},
"scripts": {
"analyze-contracts": "slither .",
"coverage": "forge coverage --report lcov",
"lint": "solhint ./src/*.sol",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"test": "forge test",
"uml": "npx sol2uml ./src -o UML.svg"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint",
"pre-push": "yarn prettier-check && yarn test"
}
},
"dependencies": {
"yarn": "1.22.21"
},
"devDependencies": {
"coveralls": "3.1.1",
"husky": "9.0.10",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"sol2uml": "2.5.20",
"solhint": "4.1.1",
"solhint-plugin-prettier": "0.1.0",
"solidity-coverage": "0.8.7"
}
}