From a79fb363aa7329db28a9742a81ba1b4941443ae9 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 30 Oct 2014 14:47:20 -0700 Subject: [PATCH] Let npm install bower One less step for new contributors who need to add dependencies. --- README.md | 6 ++++-- package.json | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9945ad44..6bbbd197 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,10 @@ You should now be able to use the extension. If you need to reset your developme Dependencies ============ -Dependencies are managed by [bower](bower.io). You'll need to install -node, npm, and bower to change them. + +Dependencies are managed by [bower](bower.io) and built with +[grunt](gruntjs.com). To change them, you'll need to install node and npm, then +run `npm install` to install bower, grunt, and related plugins. ### Adding a bower component diff --git a/package.json b/package.json index 2df3fe1d..89a33ccd 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "grunt": "^0.4.5", "grunt-contrib-concat": "^0.5.0", "grunt-contrib-jshint": "~0.10.0", - "grunt-preen": "^1.0.0" + "grunt-preen": "^1.0.0", + "bower": "^1.3.12" } }