From 257119cf2bb6d8f341a5d65a2f47bcf803dff205 Mon Sep 17 00:00:00 2001 From: Cole Gleason Date: Thu, 16 Jan 2014 01:43:28 -0600 Subject: [PATCH] fix(package.json): move q to dependancies since it is required to run While trying to run git_changelog after a `npm install git-changelog --save-dev`, I found I was missing q, which is not installed when added to a project this way. --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 353bf33..5920c4b 100644 --- a/package.json +++ b/package.json @@ -27,12 +27,14 @@ "scripts": { "test": "grunt test" }, + "dependencies": { + "q": "~0.9.7" + }, "devDependencies": { "grunt-contrib-jshint": "~0.6.0", "grunt-contrib-clean": "~0.4.0", "grunt-contrib-nodeunit": "~0.2.0", "grunt": "~0.4.1", - "q": "~0.9.7", "exec": "0.0.6" }, "peerDependencies": {