diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-02-22 16:30:35 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-02-23 05:12:44 +0800 |
commit | 42ecc087cbd3558258107fbce645441955416497 (patch) | |
tree | bb5f6fe7cad0cdfa2799219282c69b99fab7b0ee /packages/sra-report/package.json | |
parent | 0e95fd0b9b9fc340854ba39c63059edb3b1a1be8 (diff) | |
download | dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar.gz dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar.bz2 dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar.lz dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar.xz dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.tar.zst dexon-sol-tools-42ecc087cbd3558258107fbce645441955416497.zip |
Implement initial sra-report command line tool
Diffstat (limited to 'packages/sra-report/package.json')
-rw-r--r-- | packages/sra-report/package.json | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/sra-report/package.json b/packages/sra-report/package.json new file mode 100644 index 000000000..0eaa5277e --- /dev/null +++ b/packages/sra-report/package.json @@ -0,0 +1,42 @@ +{ + "name": "@0xproject/sra-report", + "version": "0.0.1", + "description": "Generate reports for standard relayer API compliance", + "main": "lib/index.js", + "types": "lib/index.d.ts", + "scripts": { + "build:watch": "tsc -w", + "lint": "tslint --project . 'src/**/*.ts'", + "clean": "shx rm -rf lib", + "build": "tsc" + }, + "bin": { + "sra-report": "lib/index.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/0xProject/0x.js.git" + }, + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/0xProject/0x.js/issues" + }, + "homepage": "https://github.com/0xProject/0x.js/packages/abi-gen/README.md", + "dependencies": { + "@0xproject/assert": "^0.0.20", + "@0xproject/json-schemas": "^0.7.12", + "chalk": "^2.3.0", + "lodash": "^4.17.4", + "newman": "^3.9.3", + "yargs": "^10.0.3" + }, + "devDependencies": { + "@0xproject/tslint-config": "^0.4.9", + "@types/lodash": "^4.14.104", + "@types/node": "^8.0.53", + "@types/yargs": "^10.0.0", + "shx": "^0.2.2", + "tslint": "5.8.0", + "typescript": "2.7.1" + } +} |