From 8e860ae70d0a3880bcee7e06f692b0fe91f310d0 Mon Sep 17 00:00:00 2001 From: Aurelio De Rosa Date: Sat, 17 Oct 2015 12:36:49 +0100 Subject: [PATCH 1/2] npm scripts: Fixed Windows incompatibility --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3295e847..f3d4ec6c 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "testling": "^1.7.1" }, "scripts": { - "test": "node node_modules/argg test/*.js && node node_modules/jshint/bin/jshint github.js test/*.js", - "jshint": "node node_modules/jshint/bin/jshint github.js test/*.js" + "test": "tape test/*.js && npm run-script jshint", + "jshint": "jshint github.js test/" }, "repository": { "type": "git", From c0a47c930acff2ea355b5ddd659902770d04eac1 Mon Sep 17 00:00:00 2001 From: Aurelio De Rosa Date: Sat, 17 Oct 2015 12:37:45 +0100 Subject: [PATCH 2/2] package.json: Removed unnecessary dependency --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index f3d4ec6c..1da88b99 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,6 @@ "xmlhttprequest": "~1.7.0" }, "devDependencies": { - "argg": "0.0.1", "istanbul": "^0.3.13", "jshint": "^2.5.8", "plato": "^1.4.0",