geojson.lib.routeboxer
Version:
The RouteBoxer class generates an Array of GeoJSON.Polygon Objects that are guaranteed to cover every point within a specified distance of a path.
21 lines (16 loc) • 440 B
JavaScript
module.exports = function(grunt) {
// load all grunt tasks matching the `grunt-*` pattern
require('load-grunt-tasks')(grunt);
// Default task(s).
grunt.registerTask('default', ['jshint']);
// Plugin configuration(s).
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['Gruntfile.js', 'lib/**/*.js']
},
"license-report": {
target: './licences/report.html'
}
});
};