diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-09 00:49:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-09 00:49:21 +0800 |
commit | 7440b87596bc3925d3b980aef2a9e027936ab441 (patch) | |
tree | 733823e0a7de5ab78ce51758ad64a31ce3b215f6 /packages/sra-report/package.json | |
parent | aaa7affa46450bb48639e9b90c2a2e8adb28826c (diff) | |
parent | 583a17d6279e819ab5e37f330500444881e873d7 (diff) | |
download | dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.gz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.bz2 dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.lz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.xz dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.tar.zst dexon-sol-tools-7440b87596bc3925d3b980aef2a9e027936ab441.zip |
Merge pull request #412 from 0xProject/feature/sra-reporter
Implement initial sra-report command line tool
Diffstat (limited to 'packages/sra-report/package.json')
-rw-r--r-- | packages/sra-report/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/packages/sra-report/package.json b/packages/sra-report/package.json new file mode 100644 index 000000000..c248cff30 --- /dev/null +++ b/packages/sra-report/package.json @@ -0,0 +1,48 @@ +{ + "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-monorepo.git" + }, + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/0xProject/0x-monorepo/issues" + }, + "homepage": "https://github.com/0xProject/0x-monorepo/packages/sra-report/README.md", + "dependencies": { + "0x.js": "^0.33.0", + "@0xproject/assert": "^0.1.0", + "@0xproject/connect": "^0.6.2", + "@0xproject/json-schemas": "^0.7.13", + "@0xproject/utils": "^0.4.0", + "chalk": "^2.3.0", + "lodash": "^4.17.4", + "newman": "^3.9.3", + "yargs": "^10.0.3" + }, + "devDependencies": { + "@0xproject/tslint-config": "^0.4.10", + "@types/lodash": "^4.14.86", + "@types/node": "^8.0.53", + "@types/yargs": "^10.0.0", + "shx": "^0.2.2", + "tslint": "5.8.0", + "typescript": "2.7.1" + }, + "publishConfig": { + "access": "public" + } +} |