-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 963 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 963 Bytes
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
{
"name": "@zkpull/contracts",
"version": "1.0.0",
"description": "Decentralized bounty management system for GitHub issues with zkTLS verification",
"author": "zkPull Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zkpull/zkPull-contracts.git"
},
"keywords": [
"ethereum",
"solidity",
"smart-contracts",
"bounty",
"github",
"zktls",
"defi",
"web3"
],
"scripts": {
"build": "forge build",
"test": "forge test",
"test:coverage": "forge coverage",
"test:gas": "forge test --gas-report",
"deploy:sepolia": "forge script script/Deploy.s.sol --rpc-url sepolia --broadcast --verify",
"deploy:mainnet": "forge script script/Deploy.s.sol --rpc-url mainnet --broadcast --verify --slow",
"format": "forge fmt",
"lint": "solhint 'src/**/*.sol' 'test/**/*.sol'",
"clean": "forge clean"
},
"devDependencies": {
"solhint": "^4.0.0"
}
}