2014-08-04 00:01:39 +02:00
|
|
|
// Generated on 2014-08-03 using generator-nodejs 2.0.1
|
|
|
|
module.exports = function (grunt) {
|
|
|
|
grunt.initConfig({
|
|
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
|
|
complexity: {
|
|
|
|
generic: {
|
|
|
|
src: ['app/**/*.js'],
|
|
|
|
options: {
|
|
|
|
errorsOnly: false,
|
|
|
|
cyclometric: 6, // default is 3
|
|
|
|
halstead: 16, // default is 8
|
|
|
|
maintainability: 100 // default is 100
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
jshint: {
|
|
|
|
all: [
|
|
|
|
'Gruntfile.js',
|
|
|
|
'app/**/*.js',
|
|
|
|
'test/**/*.js'
|
|
|
|
],
|
|
|
|
options: {
|
|
|
|
jshintrc: '.jshintrc'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mochacli: {
|
|
|
|
all: ['test/**/*.js'],
|
|
|
|
options: {
|
|
|
|
reporter: 'spec',
|
2015-02-23 17:14:14 +01:00
|
|
|
ui: 'bdd',
|
|
|
|
timeout: 10000
|
2014-08-04 00:01:39 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
js: {
|
|
|
|
files: ['**/*.js', '!node_modules/**/*.js'],
|
|
|
|
tasks: ['default'],
|
|
|
|
options: {
|
|
|
|
nospawn: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
grunt.loadNpmTasks('grunt-complexity');
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
|
|
grunt.loadNpmTasks('grunt-mocha-cli');
|
|
|
|
grunt.registerTask('test', ['complexity', 'jshint', 'mochacli', 'watch']);
|
|
|
|
grunt.registerTask('ci', ['complexity', 'jshint', 'mochacli']);
|
|
|
|
grunt.registerTask('default', ['test']);
|
|
|
|
};
|