-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
42 lines (42 loc) · 1.53 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": "@divergencetech/ethier",
"version": "0.55.0",
"description": "Golang and Solidity SDK to make Ethereum development ethier",
"main": "\"\"",
"scripts": {
"build": "go build -o build/ethier ethier/*.go && go build -o build ./forge-testing/...",
"generate": "PATH=\"$(readlink -f build):${PATH}\" go generate ./...",
"solhint": "solhint -w 0 '**/*.sol'",
"test": "yarn test:go && yarn test:forge",
"test:go": "PATH=\"$(readlink -f build):${PATH}\" go generate ./... && yarn test:light",
"test:forge": "PATH=\"$(readlink -f build):${PATH}\" forge test",
"test:light": "go test ./...",
"test:verbose": "PATH=\"$(readlink -f build):${PATH}\" go generate ./... && go test ./... -test.v",
"lint:go": "golint ./... 2>&1 | tee /dev/stderr | xargs -0 test -z",
"lint:sol": "npm run solhint",
"lint": "npm run lint:sol && npm run lint:go",
"fmt:go": "gofmt -e -d . 2>&1 | tee /dev/stderr | xargs -0 test -z",
"fmt:sol": "npx prettier '**/*.sol' --check",
"fmt": "npm run fmt:sol && npm run fmt:go"
},
"repository": {
"type": "git",
"url": "github.com/divergencetech/ethier"
},
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.3.0",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"erc721a": "4.2.3",
"operator-filter-registry": "^1.4.0"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7"
}
}