#!/usr/bin/env node

/**
 * Bud file for LICENSE
 * Executing this file renders LICENSE file.
 *
 * Generated by {{generator}} on {{today}},
 * from a template provided by {{ pkg.name }}.
 *
 * @see https://github.com/coz-repo/coz
 */

'use strict'

const apemanBudLicense = require('apeman-bud-license')
const pkg = require('./package.json')

module.exports = apemanBudLicense({
  /** Type of the license. */
  type: String(pkg.license),
  /** Copyright holder */
  holder: String(pkg.repository).split(/\//).shift(),
  /** Year license begun */
  year: {{year}}
})

{{{read _render}}}

