diff --git a/Gruntfile.js b/Gruntfile.js index af1aee3..bd422e4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -7,6 +7,9 @@ module.exports = function(grunt) { // Time the grunt tasks require('time-grunt')(grunt); + // We need Karma + grunt.loadNpmTasks('grunt-karma'); + grunt.initConfig({ karma: { options: { diff --git a/package.json b/package.json index 561b41f..b3d80a3 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,6 @@ "load-grunt-tasks": "~0.3.0", "grunt-contrib-jshint": "~0.8.0", "grunt": "~0.4.2", - "grunt-contrib-uglify": "~0.3.2", - "karma": "~0.8" + "grunt-contrib-uglify": "~0.3.2" } }