diff --git a/package.json b/package.json index 18f7066..103916e 100644 --- a/package.json +++ b/package.json @@ -9,16 +9,14 @@ "scripts": { "build": "npm run lint && npm run test", "lint": "eslint .", - "test": "node dist-test/src/test.js", - "testd": "node test/src/test.js", + "test": "node test/src/test.js", "test-cov": "istanbul cover test/src/test.js -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/", "patch": "npm version patch -m\"update version to %s\" && git push && git push --tags", "minor": "npm version minor -m\"update version to %s\" && git push && git push --tags", "major": "npm version major -m\"update version to %s\" && git push && git push --tags", "buildwp": "webpack --config webpack-production.config.js --progress --profile --colors", - "babel": "rm -rf build && babel src/ --out-dir dist && babel test/src/ --out-dir dist-test/src && cp -R test/data dist-test/", - "babel2": "rm -rf build && babel src/ --out-dir build/src && babel test/src/ --out-dir build/test/src && cp -R test/data build/test/data && cp package.json build/", - "all": "npm run lint && npm run babel && npm run test", + "babel": "rm -rf dist && babel src/ --out-dir dist", + "all": "npm run lint && npm run test", "prepublish": "npm run babel" }, "repository": {