UNPKG

ot-hapi-statsd

Version:
20 lines (16 loc) 399 B
'use strict'; 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']); };