From b596de188b5a1ad6c5cabde545e0ad4cc6ffe445 Mon Sep 17 00:00:00 2001 From: Krzysztof Magiera Date: Wed, 9 Mar 2016 11:00:21 +0100 Subject: [PATCH] Move dependency on grunt to "devDependencies" Package "grunt" is not used outside of the development workflow. Therefore it doesn't make sense for the "grunt" to be included as a direct package dependency. Now everyone that is willing to use this package needs to pull in "grunt" which is undesirable. --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index d57b945..c6be877 100644 --- a/package.json +++ b/package.json @@ -34,10 +34,8 @@ "scripts": { "test": "grunt test" }, - "dependencies": { - "grunt": "^0.4.5" - }, "devDependencies": { + "grunt": "^0.4.5", "grunt-contrib-clean": "^0.7", "grunt-contrib-concat": "^0.5", "grunt-contrib-jshint": "^0.12",