diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 388ae89..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,39 +0,0 @@ -module.exports = function(grunt) { - - // Project configuration. - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - jshint: { - files: ['Gruntfile.js', 'index.js', 'lib/**/*.js','tests/**/*.js'], - options: { - globals: { - console: true, - module: true - } - } - }, - release: { - options: { - bump: true, //default: true - file: 'package.json', //default: package.json - add: true, - commit: true, - tag: true, - push: true, - pushTags: true, - npm: true - } - }, - watch: { - files: ['<%= jshint.files %>'], - tasks: ['jshint'] - } - - }); - - grunt.loadNpmTasks('grunt-release'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-contrib-jshint'); - - grunt.registerTask('default', ['jshint']); -};