module.exports = function()

in Gruntfile.js [7:18]


module.exports = function (grunt) {
  // load all grunt tasks based on environment
  // show elapsed time at the end
  require('time-grunt')(grunt);
  require('load-grunt-tasks')(grunt);

  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json')
  });

  grunt.loadTasks('grunttasks');
};