@pablopunk/geo-ip
Version:
Get location details (latitude, longitude...) from IP visitor, server side NodeJS module
18 lines (14 loc) • 351 B
JavaScript
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['src/**/*.js', 'test/**/*.js']
}
});
// LOAD PLUGINS
grunt.loadNpmTasks('grunt-contrib-jshint');
// TASK REGISTER
grunt.registerTask('default', ['jshint']);
};