ot-hapi-statsd
Version:
Hapi.js stats plugin
20 lines (16 loc) • 399 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
eslint: {
options: {
configFile: '.eslintrc'
},
target: [ './*.js', './src' ]
}
});
grunt.loadNpmTasks('grunt-eslint');
require('time-grunt')(grunt);
grunt.registerTask('default', ['build']);
grunt.registerTask('build', ['eslint']);
};
;