UNPKG

bitcore-wallet-client

Version:

Client for bitcore-wallet-service

21 lines (17 loc) 365 B
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jsdoc: { dist: { src: ['lib/*.js'], options: { destination: 'docs' } } } }); grunt.loadNpmTasks('grunt-jsdoc'); // Default task(s). grunt.registerTask('default', []); };