UNPKG

website

Version:

A set of tools for extracting information out of a website.

30 lines (25 loc) 547 B
/* * notable! * * Copyright(c) 2013 André König <andre.koenig@gmail.com> * MIT Licensed * */ module.exports = function (grunt) { 'use strict'; grunt.initConfig({ jshint: { files: [ 'Gruntfile.js', 'lib/**/*.js', 'test/**/*.js', 'index.js' ], options: { jshintrc: '.jshintrc' } } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('build', ['jshint']); };