From 5724f5875d23736fe80ea6d556a779c01f33d285 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Tue, 21 Jan 2020 01:55:36 +0800 Subject: [PATCH] Fix script errors on windows (#500) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2afd83afd2..666268c825 100644 --- a/package.json +++ b/package.json @@ -15,8 +15,8 @@ }, "scripts": { "test": "xo && nyc ava", - "lint": "./test/lint/lint.js", - "integration": "./test/integration/test.js" + "lint": "node ./test/lint/lint.js", + "integration": "node ./test/integration/test.js" }, "files": [ "index.js",