{{!
    Template for example-Apemanfile.js
}}/**
 * This is example Apemanfile to use "{{pkg.name}}".
{{#each see}} * @see {{{this}}}
{{/each}} */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $tasks: {
{{#with signature.example}}
        // Define your own task.
        "my-task-01": require('{{../pkg.name}}')({{#each args}}{{{this}}}, {{/each}}{
{{#each options}}                "{{{@key}}}": {{{this}}}{{#if @last}}{{else}},
{{/if}}{{/each}}
{{/with}}
        });
    }
};