diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2019-02-07 19:23:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-07 19:23:00 +0800 |
commit | 7e19c944b91f573bb026ca3a916cd4e4b9169a9e (patch) | |
tree | 252302871a01eee80ae64966ed72dc82b6eda1aa /contracts/exchange-libs/package.json | |
parent | 2a344e26cc51fa41a9df3535b625b8609dfc167e (diff) | |
parent | fd4d3cff880e9131d55a4e534c17289db5f72b6b (diff) | |
download | dexon-0x-contracts-7e19c944b91f573bb026ca3a916cd4e4b9169a9e.tar.gz dexon-0x-contracts-7e19c944b91f573bb026ca3a916cd4e4b9169a9e.tar.zst dexon-0x-contracts-7e19c944b91f573bb026ca3a916cd4e4b9169a9e.zip |
Merge pull request #1575 from 0xProject/feature/contracts-gen
Contracts generator
Diffstat (limited to 'contracts/exchange-libs/package.json')
-rw-r--r-- | contracts/exchange-libs/package.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/contracts/exchange-libs/package.json b/contracts/exchange-libs/package.json index 6bf8267be..2b7a1c404 100644 --- a/contracts/exchange-libs/package.json +++ b/contracts/exchange-libs/package.json @@ -29,10 +29,12 @@ "profiler:report:html": "istanbul report html && open coverage/index.html", "coverage:report:lcov": "istanbul report lcov", "test:circleci": "yarn test", + "contracts:gen": "contracts-gen", "lint-contracts": "solhint -c ../.solhint.json contracts/**/**/**/**/*.sol" }, "config": { - "abis": "generated-artifacts/@(LibMath|LibOrder|LibFillResults|LibAbiEncoder|TestLibs|LibEIP712).json" + "abis": "./generated-artifacts/@(LibAbiEncoder|LibAssetProxyErrors|LibConstants|LibEIP712|LibFillResults|LibMath|LibOrder|TestLibs).json", + "abis:comment": "This list is auto-generated by contracts-gen. Don't edit manually." }, "repository": { "type": "git", @@ -44,6 +46,7 @@ }, "homepage": "https://github.com/0xProject/0x-monorepo/contracts/libs/README.md", "devDependencies": { + "@0x/contracts-gen": "^1.0.0", "@0x/abi-gen": "^2.0.1", "@0x/contracts-test-utils": "^3.0.2", "@0x/dev-utils": "^2.0.1", @@ -72,7 +75,7 @@ "@0x/utils": "^4.0.2", "@0x/web3-wrapper": "^4.0.1", "ethereum-types": "^2.0.0", - "lodash": "^4.17.5" + "lodash": "^4.17.11" }, "publishConfig": { "access": "public" |