Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
atom / usr / share / atom / resources / app / apm / node_modules / tmp / Gruntfile.js
Size: Mime:
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']);
};