UNPKG

grunt-secure-config

Version:

Grunt tasks for management of secure-config encrypted JSON files.

25 lines (20 loc) 372 B
/* * grunt-secure-config * * Copyright (c) 2013 Kevin Smith, contributors * Licensed under MIT */ "use strict"; module.exports = function (grunt) { grunt.initConfig({ jshint: { all: [ "Gruntfile.js", "tasks/**/*.js" ] } }); grunt.loadTasks("tasks"); grunt.loadNpmTasks("grunt-contrib-jshint"); grunt.registerTask("default", ["jshint"]); };