grunt-secure-config
Version:
Grunt tasks for management of secure-config encrypted JSON files.
25 lines (20 loc) • 372 B
JavaScript
/*
* grunt-secure-config
*
* Copyright (c) 2013 Kevin Smith, contributors
* Licensed under MIT
*/
;
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
all: [
"Gruntfile.js",
"tasks/**/*.js"
]
}
});
grunt.loadTasks("tasks");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.registerTask("default", ["jshint"]);
};