UNPKG

mx-connect

Version:

Establish TCP connection to a MX server with MTA-STS and DANE/TLSA support

24 lines (19 loc) 568 B
'use strict'; module.exports = function (grunt) { // Project configuration. grunt.initConfig({ eslint: { all: ['lib/**/*.js', 'test/**/*.js', 'Gruntfile.js'] }, nodeunit: { unit: ['test/*-test.js'], integration: ['test/integration/*-test.js'], all: ['test/**/*-test.js'] } }); // Load the plugin(s) grunt.loadNpmTasks('grunt-eslint'); grunt.loadNpmTasks('grunt-contrib-nodeunit'); // Tasks grunt.registerTask('default', ['eslint', 'nodeunit:all']); };