diff options
Diffstat (limited to 'packages/deployer/package.json')
-rw-r--r-- | packages/deployer/package.json | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/packages/deployer/package.json b/packages/deployer/package.json index af5c33354..f969e4eda 100644 --- a/packages/deployer/package.json +++ b/packages/deployer/package.json @@ -1,6 +1,6 @@ { "name": "@0xproject/deployer", - "version": "0.0.9", + "version": "0.1.0", "description": "Smart contract deployer of 0x protocol", "main": "lib/src/index.js", "types": "lib/src/index.d.ts", @@ -9,7 +9,7 @@ "build": "yarn clean && copyfiles 'test/fixtures/contracts/**/*' src/solc/solc_bin/* ./lib && tsc", "test": "npm run build; mocha lib/test/*_test.js", "compile": "npm run build; node lib/src/cli.js compile", - "clean": "rm -rf ./lib", + "clean": "shx rm -rf ./lib", "migrate": "npm run build; node lib/src/cli.js migrate", "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'", "test:circleci": "yarn test" @@ -32,16 +32,17 @@ "chai": "^4.0.1", "copyfiles": "^1.2.0", "mocha": "^4.0.1", + "shx": "^0.2.2", "tslint": "5.8.0", "types-bn": "^0.0.1", "typescript": "2.7.1", - "web3-typescript-typings": "^0.9.10" + "web3-typescript-typings": "^0.9.11" }, "dependencies": { - "@0xproject/json-schemas": "^0.7.11", - "@0xproject/types": "^0.2.2", - "@0xproject/utils": "^0.3.3", - "@0xproject/web3-wrapper": "^0.1.13", + "@0xproject/json-schemas": "^0.7.12", + "@0xproject/types": "^0.2.3", + "@0xproject/utils": "^0.3.4", + "@0xproject/web3-wrapper": "^0.1.14", "ethereumjs-util": "^5.1.1", "lodash": "^4.17.4", "solc": "^0.4.18", |