Initial commit
[yaffs-website] / node_modules / tmp / Gruntfile.js
1 module.exports = function(grunt) {
2   grunt.initConfig({
3     jshint: {
4       all: ['Gruntfile.js', 'lib/*.js', 'test/*.js']
5     },
6     vows: {
7       all: {
8         src: ['test/*.js'],
9       }
10     }
11   });
12
13   grunt.loadNpmTasks('grunt-contrib-jshint');
14   //grunt.loadNpmTasks('grunt-vows-runner');
15   grunt.loadNpmTasks('grunt-vows');
16
17   grunt.registerTask('default', ['jshint', 'vows']);
18 };