diff --git a/package.json b/package.json index cd36f27344..797f959778 100644 --- a/package.json +++ b/package.json @@ -8,11 +8,11 @@ "build": "tsc -p tsconfig.build.json", "build:watch": "tsc -p tsconfig.build.json -w", "test:nolint": "npm run clean-build && jest --clearCache && node scripts/tests.js", - "clean": "./scripts/clean.js", + "clean": "node scripts/clean.js", "clean-build": "npm run clean && npm run build", "pretest": "npm run tslint", - "test:unit": "./scripts/tests.js", - "test:e2e": "./scripts/e2e.js", + "test:unit": "node scripts/tests.js", + "test:e2e": "node scripts/e2e.js", "test": "npm run test:e2e && npm run test:unit", "tslint": "tslint 'src/**/*.ts'", "doc": "doctoc .",