Skip to content

Commit

Permalink
fix(package.json): move q to dependancies since it is required to run
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
colegleason committed Jan 16, 2014
1 parent e725d8f commit 257119c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 257119c

Please sign in to comment.