rising-tide-tap-list
Version:
Returns a list of beers currently on tap at the Rising Tide Brewery
33 lines (27 loc) • 559 B
JavaScript
module.exports = function(grunt){
'use strict';
grunt.initConfig({
jshint: {
options: {
node: true
},
all: {
src: ['package.json', 'Gruntfile.js', 'index.js', 'test/index.js']
}
},
test:{
options: {
require: ['should'],
ui: 'bdd',
reporter: 'spec'
},
all: {
src: 'test/index.js'
}
}
});
grunt.loadNpmTasks('grunt-cafe-mocha');
grunt.renameTask('cafemocha', 'test');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint', 'test']);
};