diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-08 01:42:50 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-08 01:42:50 +0800 |
commit | 215e33fa6c1ca3c27712f5253daeaebf590f8983 (patch) | |
tree | cfee907308158726196d4edfebd7a9bc7064e76b /packages/subproviders/package.json | |
parent | 3d12b84f1d1ecf8eb6fa145f4bf124f0b7b484c1 (diff) | |
parent | be17b75ad3e043df6f4ff05ead0627cb9a45d93b (diff) | |
download | dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar.gz dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar.bz2 dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar.lz dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar.xz dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.tar.zst dexon-sol-tools-215e33fa6c1ca3c27712f5253daeaebf590f8983.zip |
Merge branch 'feature/addSubproviders' into feature/portal-ledger-support
* feature/addSubproviders:
remove unneeded reset
Use rejectedWith
Add missing calls to configure
remove unneeded type assertions
remove unused type
Simplify interface to signPersonalMessageAsync
Fix unit test
Fix ethereumjs-tx declaration and import
Use assert.isHexString
Add type defs for ledgerco and ethereumjs-tx
Make test only run unit tests since cannot run integration tests on CI
Improve README
Fix version and remove the UMD build
Fix tslint error
Diffstat (limited to 'packages/subproviders/package.json')
-rw-r--r-- | packages/subproviders/package.json | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/packages/subproviders/package.json b/packages/subproviders/package.json index 74d1ba8c9..11d116278 100644 --- a/packages/subproviders/package.json +++ b/packages/subproviders/package.json @@ -1,25 +1,20 @@ { "name": "@0xproject/subproviders", - "version": "0.0.0", + "version": "0.0.1", "main": "lib/src/index.js", "types": "lib/src/index.d.ts", "license": "Apache-2.0", "scripts": { "prebuild": "npm run clean", - "build": "run-p build:umd:dev build:commonjs; exit 0;", "clean": "shx rm -rf lib", - "build:umd:dev": "webpack", - "build:umd:prod": "NODE_ENV=production webpack", - "build:commonjs": "tsc", + "build": "tsc", "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'", - "pretest:umd": "run-s clean build:umd:dev build:commonjs", - "substitute_umd_bundle": "shx mv _bundles/* lib/src", - "run_mocha_all": "mocha lib/test/**/*_test.js --timeout 10000 --bail --exit", "run_mocha_unit": "mocha lib/test/unit/**/*_test.js --timeout 10000 --bail --exit", "run_mocha_integration": "mocha lib/test/integration/**/*_test.js --timeout 10000 --bail --exit", - "test": "run-s clean build:commonjs run_mocha_all", - "test:unit": "run-s clean build:commonjs run_mocha_unit", - "test:integration": "run-s clean build:commonjs run_mocha_integration" + "test": "npm run test:unit", + "test:all": "run-s test:unit test:integration", + "test:unit": "run-s clean build run_mocha_unit", + "test:integration": "run-s clean build run_mocha_integration" }, "dependencies": { "@0xproject/assert": "^0.0.6", |