UNPKG

@deliverysolutions/saml2js

Version:

Parse SAML2 attributes into a JavaScript object.

30 lines (26 loc) 594 B
// Gruntfile // ========= // Tasks for development and testing. module.exports = function(grunt) { require('load-grunt-tasks')(grunt); require('time-grunt')(grunt); grunt.initConfig({ watch: { options: { reload: true }, dev: { files: ['index.js', 'Gruntfile.js'], tasks: ['jshint:dev'] } }, jshint: { options: { reporter: require('jshint-stylish') }, dev: ['**/*.js', '!node_modules/**/*.js'] } }); grunt.registerTask('default', 'develop'); grunt.registerTask('develop', ['watch:dev']); };