-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
29 lines (29 loc) · 1.14 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
{
"name": "smartwallet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "forge build",
"test": "npm run test:unit && npm run test:fork",
"test:unit": "forge test --match-contract UnitTest",
"test:fork": "source .env && forge test --match-contract EndToEndTest --rpc-url $GOERLI_RPC_URL",
"deploy:all": "source .env && forge script script/DeployAll.s.sol:DeployAll --rpc-url $GOERLI_RPC_URL --broadcast --verify -vvvv",
"deploy:wallet": "source .env && forge script script/DeployWallet.s.sol:DeployWallet --rpc-url $GOERLI_RPC_URL --broadcast --verify -vvvv",
"deploy:walletFactory": "source .env && forge script script/DeployWalletFactory.s.sol:DeployWalletFactory --rpc-url $GOERLI_RPC_URL --broadcast --verify -vvvv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomas-waite/erc4337-wallet.git"
},
"author": "Tom Waite",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/thomas-waite/erc4337-wallet/issues"
},
"homepage": "https://github.com/thomas-waite/erc4337-wallet#readme"
}