diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-08 22:59:44 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-14 22:47:02 +0800 |
commit | 6120a43fff7b1b1aa1813533f3a990bb72df74a0 (patch) | |
tree | d508de143764fba7b31fcad06d1123725d03654f /packages/dev-utils/package.json | |
parent | 02e7354b5324b80f1e5a6a2968d05de44820498c (diff) | |
download | dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar.gz dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar.bz2 dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar.lz dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar.xz dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.tar.zst dexon-sol-tools-6120a43fff7b1b1aa1813533f3a990bb72df74a0.zip |
Create dev-utils with blockchainLifecycle in it
Diffstat (limited to 'packages/dev-utils/package.json')
-rw-r--r-- | packages/dev-utils/package.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json new file mode 100644 index 000000000..d9a0fa193 --- /dev/null +++ b/packages/dev-utils/package.json @@ -0,0 +1,37 @@ +{ + "name": "@0xproject/dev-utils", + "version": "0.0.1", + "description": "0x dev TS utils", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "scripts": { + "build": "tsc", + "clean": "shx rm -rf lib", + "lint": "tslint --project . 'src/**/*.ts'" + }, + "license": "Apache-2.0", + "repository": { + "type": "git", + "url": "https://github.com/0xProject/0x.js.git" + }, + "bugs": { + "url": "https://github.com/0xProject/0x.js/issues" + }, + "homepage": "https://github.com/0xProject/0x.js/packages/dev-utils/README.md", + "devDependencies": { + "@0xproject/tslint-config": "^0.2.0", + "@types/lodash": "^4.14.86", + "npm-run-all": "^4.1.2", + "shx": "^0.2.2", + "tslint": "5.8.0", + "typescript": "~2.6.1", + "types-bn": "^0.0.1", + "types-ethereumjs-util": "0xProject/types-ethereumjs-util" + }, + "dependencies": { + "bignumber.js": "~4.1.0", + "ethereumjs-util": "^5.1.2", + "lodash": "^4.17.4", + "request-promise-native": "^1.0.5" + } +} |