pir
Version:
Node library for PIR motion detector
73 lines (67 loc) • 1.6 kB
JavaScript
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
nodeunit: {
tests: [
'test/unit/*.js'
]
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'index.js',
'test/**/*.js',
'Gruntfile.js',
]
},
jscs: {
all: [
'index.js',
'test/**/*.js',
'Gruntfile.js',
],
options: {
config: '.jscsrc'
}
},
jsbeautifier: {
all: [
'index.js',
'test/**/*.js',
'Gruntfile.js',
],
options: {
js: {
braceStyle: 'collapse',
breakChainedMethods: false,
e4x: false,
evalCode: false,
indentChar: ' ',
indentLevel: 0,
indentSize: 2,
indentWithTabs: false,
jslintHappy: false,
keepArrayIndentation: false,
keepFunctionIndentation: false,
maxPreserveNewlines: 10,
preserveNewlines: true,
spaceBeforeConditional: true,
spaceInParen: false,
unescapeStrings: false,
wrapLineLength: 0
}
}
}
});
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-jscs');
grunt.loadNpmTasks('grunt-jsbeautifier');
// 'npm test' runs these tasks
grunt.registerTask('test', ['jshint', 'jscs', 'jsbeautifier', 'nodeunit']);
// Default task.
grunt.registerTask('default', ['test']);
};