verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
20 lines (19 loc) • 367 B
JavaScript
/**
* Basic README scaffold.
*/
module.exports = [
'# {%= name %}',
'',
'> {%= description %}',
'',
'Install with [npm](npmjs.org) `npm i {%= name %} --save-dev`',
'',
'Now that {%= name %} is installed, run: `{%= name %}`',
'',
'## Author',
'{%= author.name %}',
'',
'## License',
'{%= copyright() %}',
'{%= license() %}'
].join('\n');