-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.48 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
{
"name": "tg-bridge-contract-solidity",
"version": "1.0.0",
"description": "Bridge contract in Solidity",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint:sol": "npx solium -d src",
"lint:sol:fix": "npx solium -d src --fix",
"lint:sol:test": "npx solium -d test",
"lint:sol:test:fix": "npx solium -d test --fix",
"lint:sol:script": "npx solium -d script",
"lint:sol:script:fix": "npx solium -d script --fix",
"lint:sol:prettier": "npx prettier --write 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'",
"uml": "npx sol2uml class src",
"uml:test": "npx sol2uml class test",
"surya:report": "npx surya mdreport surya_report_debtVault.md src/DebtVault.sol",
"surya:graph": "npx surya graph src/bridge/CCIPBaseSender.sol | dot -Tpng > surya_graph_CCIPBaseSender.png ",
"docgen": "npx hardhat docgen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taurusgroup/tg-bridge-contract-solidity.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/taurusgroup/tg-bridge-contract-solidity/issues"
},
"homepage": "https://github.com/taurusgroup/tg-bridge-contract-solidity#readme",
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"slither": "^0.2.2",
"sol2uml": "^2.5.16",
"surya": "^0.4.6",
"solidity-docgen": "^0.6.0-beta.35",
"prettier-plugin-solidity": "^1.0.0-rc.1",
"ethlint": "^1.2.5"
}
}