forked from synapsecns/sanguine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "@synapsecns/solidity-devops",
"version": "0.3.2",
"description": "A collection of utils to effortlessly test, deploy and maintain the smart contracts on EVM compatible blockchains",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/synapsecns/sanguine.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"js",
"src",
".env.example",
"devops.json",
"foundry.toml",
"remappings.txt"
],
"scripts": {
"build:go": " ",
"build:slither": " ",
"ci:lint": "npm run lint:check",
"lint": "forge fmt && eslint . --fix --ext js",
"lint:check": "forge fmt --check && eslint . --max-warnings=0 --ext js",
"test:coverage": "echo 'TODO: Add test coverage'"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"ds-test": "https://github.com/dapphub/ds-test#e282159",
"forge-std": "https://github.com/foundry-rs/forge-std#v1.7.6"
},
"bin": {
"fsr": "js/forgeScriptRun.js",
"fsr-str": "js/forgeScriptRunString.js",
"fvc": "js/forgeVerifyContract.js",
"sd": "js/saveDeployment.js",
"vp": "js/verifyProxy.js"
}
}