UNPKG

happn-password-hash-and-salt

Version:

Simple, safe and straight-forward password hashing / salting for node.js

17 lines (14 loc) 255 B
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mocha-test'); grunt.initConfig({ mochaTest: { test: { options: { reporter: 'spec' }, src: ['test/**/*.js'] } } }); grunt.registerTask('test', ['mochaTest']); };