generator-verb
Version:
Kickstart documentation for any project! This is the official Yeoman generator for Verb, the zero-configuration markdown docs generator that is extremely easy to use and extend.
29 lines (28 loc) • 610 B
JSON
{
"name": "<%= appname %>",
"description": "<%= projectdesc %>",
"version": "0.1.0",
"homepage": "https://github.com/<%= username %>/<%= appname %>",
"author": "<%= authorname %> (<%= authorurl %>)",
"repository": "<%= username %>/<%= appname %>",
"bugs": {
"url": "https://github.com/<%= username %>/<%= appname %>/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"keywords": []
}