aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tmp/Gruntfile.js
blob: 8df64e70d33fde945aff0cfd02fdddf221fdae12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = function(grunt) {
  grunt.initConfig({
    jshint: {
      all: ['Gruntfile.js', 'lib/*.js', 'test/*.js']
    },
    vows: {
      all: {
        src: ['test/*.js'],
      }
    }
  });

  grunt.loadNpmTasks('grunt-contrib-jshint');
  //grunt.loadNpmTasks('grunt-vows-runner');
  grunt.loadNpmTasks('grunt-vows');

  grunt.registerTask('default', ['jshint', 'vows']);
};