cbor-sync
Version:
CBOR encode/decode (synchronous, semantic, browser-compatible)
20 lines (16 loc) • 357 B
JavaScript
var path = require('path');
var fs = require('fs');
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-mocha-test');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
mochaTest: {
test: {
src: ['test/**/*.js']
}
}
});
// Default task(s).
grunt.registerTask('default', 'mochaTest');
};