diff --git a/remix-analyzer/package.json b/remix-analyzer/package.json index aa059df5ba..864ca4be24 100644 --- a/remix-analyzer/package.json +++ b/remix-analyzer/package.json @@ -28,8 +28,7 @@ }, "standard": { "ignore": [ - "node_modules/*", - "soljson.js" + "node_modules/*" ], "parser": "babel-eslint" }, diff --git a/remix-debug/package.json b/remix-debug/package.json index e275a6e8f2..547803d799 100644 --- a/remix-debug/package.json +++ b/remix-debug/package.json @@ -38,8 +38,7 @@ "scripts": { "build": "mkdirp build; browserify index.js > build/app.js", "lint": "standard | notify-error", - "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..", - "test": "standard && npm run downloadsolc && tape ./test/tests.js" + "test": "standard && tape ./test/tests.js" }, "repository": { "type": "git", diff --git a/remix-solidity/package.json b/remix-solidity/package.json index 5c22ce0b63..e4b19c50b8 100644 --- a/remix-solidity/package.json +++ b/remix-solidity/package.json @@ -29,15 +29,13 @@ "webworkify": "^1.2.1" }, "scripts": { - "test": "standard && npm run downloadsolc && tape ./test/tests.js", + "test": "standard && tape ./test/tests.js", "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..", - "prepublish": "mkdirp build; npm-run-all -ls downloadsolc", - "postinstall": "npm-run-all -ls downloadsolc" + "prepublish": "mkdirp build" }, "standard": { "ignore": [ - "node_modules/*", - "soljson.js" + "node_modules/*" ], "parser": "babel-eslint" },