diff options
author | Fabio Berger <me@fabioberger.com> | 2018-04-12 08:26:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-12 08:26:42 +0800 |
commit | 749354b1c04f45a30086163ec221695705dcab42 (patch) | |
tree | 264a89829e2b49afc8c4e598c841205b7fbbee61 /packages/sra-report | |
parent | 5eb90697c824f1c98467cdb6cd71dbb94ff70805 (diff) | |
parent | 72aa3d3005c81c1d0deb66369ce543bda3cccdc1 (diff) | |
download | dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar.gz dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar.bz2 dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar.lz dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar.xz dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.tar.zst dexon-sol-tools-749354b1c04f45a30086163ec221695705dcab42.zip |
Merge pull request #520 from 0xProject/fix/installation-tests
Fix the publishing/installation test issues
Diffstat (limited to 'packages/sra-report')
-rw-r--r-- | packages/sra-report/package.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/sra-report/package.json b/packages/sra-report/package.json index 1d0163b82..578aea48f 100644 --- a/packages/sra-report/package.json +++ b/packages/sra-report/package.json @@ -2,13 +2,13 @@ "name": "@0xproject/sra-report", "version": "0.0.8", "description": "Generate reports for standard relayer API compliance", - "main": "lib/index.js", - "types": "lib/index.d.ts", + "main": "lib/src/index.js", + "types": "lib/src/index.d.ts", "scripts": { "build:watch": "tsc -w", "clean": "shx rm -rf lib scripts", "build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts", - "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'", + "lint": "tslint --project .", "test": "run-s clean build copy_test_environments copy_test_fixtures run_mocha", "copy_test_fixtures": "copyfiles -u 2 './test/fixtures/**/*.json' ./lib/test/fixtures", "copy_test_environments": "copyfiles -u 2 './test/environments/**/*.json' ./lib/test/environments", @@ -16,7 +16,7 @@ "manual:postpublish": "yarn build; node ./scripts/postpublish.js" }, "bin": { - "sra-report": "lib/index.js" + "sra-report": "lib/src/index.js" }, "repository": { "type": "git", |