From c0e7c61637e5c663eec878f5c65b5ffc09483294 Mon Sep 17 00:00:00 2001 From: David Jimenez Date: Thu, 22 Jun 2017 20:24:58 -0500 Subject: [PATCH] Use project eslint and mocha instead of global ones As those are listed in `devDependencies`, developers should not be forced to install them globally. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 892ee43..a5739a8 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,8 @@ "pre-git": { "commit-msg": "", "pre-commit": [ - "eslint ./", - "mocha" + "./node_modules/.bin/eslint ./", + "./node_modules/.bin/mocha" ], "pre-push": [], "post-commit": [],