From 8605b7ccd6ca4728b55aafa7c65a2ec556484fe4 Mon Sep 17 00:00:00 2001 From: Simon Boudrias Date: Fri, 27 Sep 2013 11:24:00 -0400 Subject: [PATCH] Update dependencies with missing ones (Fix #237) There was some missing dependencies, and some weirdness in the package.json. This should be fixed. Bower and grunt-cli have been moved back to the peerDependencies; if running on travis-CI or similar and having issues, you should install those two in the pre-build script. --- .travis.yml | 3 ++- package.json | 19 +++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8850ee2e..83aa7fac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ language: node_js node_js: - 0.8 - +before_install: + - npm install -g bower grunt-cli branches: only: - master diff --git a/package.json b/package.json index dee5652c..f0527bb2 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,31 @@ { "name": "backbone-boilerplate", "version": "1.0.0", - "devDependencies": { "grunt": "~0.4.1", - "bbb": "~0.2.0", - "bower": "~1.2.6", - "grunt-cli": "~0.1.9", "coveralls": "~2.3.0", + "grunt-bbb-requirejs": "~0.1.0", + "grunt-bbb-styles": "~0.1.0", + "grunt-bbb-server": "~0.1.0", + "grunt-contrib-compress": "~0.5.2", "grunt-contrib-jshint": "~0.6.0", "grunt-contrib-cssmin": "~0.6.1", "grunt-contrib-copy": "~0.4.1", "grunt-contrib-clean": "~0.5.0", - "grunt-contrib-compress": "~0.5.2", "grunt-processhtml": "~0.2.0", "grunt-karma": "~0.6.2", - "load-grunt-tasks": "~0.1.0", "karma-jasmine": "~0.1.0", "karma-mocha": "~0.1.0", "karma-qunit": "~0.1.0", "karma-phantomjs-launcher": "~0.1.0", - "karma-coverage": "~0.1.0" + "karma-coverage": "~0.1.0", + "load-grunt-tasks": "~0.1.0" }, - "peerDependencies": { - "generator-bbb": "*" + "bower": "*", + "generator-bbb": "*", + "grunt-cli": "*" }, - "scripts": { "test": "bower install -s && grunt karma:run && cat test/coverage/PhantomJS\\ 1.9.2\\ \\(Linux\\)/lcov.info | coveralls", "postinstall": "bower install -s"