From 1bb6e7285528ecdee40b26fad41c496f41d86471 Mon Sep 17 00:00:00 2001 From: George Politis Date: Tue, 15 Sep 2015 20:25:10 -0500 Subject: [PATCH] Adds jshint as a dev dependency and uses the local installtion. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index fd6432326..5375a5427 100644 --- a/package.json +++ b/package.json @@ -29,12 +29,13 @@ }, "devDependencies": { "precommit-hook": "3.0.0", + "jshint": "2.8.0", "uglify-js": "2.4.24", "browserify": "11.1.x" }, "license": "Apache-2.0", "scripts": { - "lint": "jshint ." + "lint": "./node_modules/.bin/jshint ." }, "pre-commit": ["lint"] }