ke-create-node-cli
Version:
CLI to create Node JS CLIs
23 lines (22 loc) • 475 B
JSON
{
"name": "{{name}}",
"description": "{{description}}",
"version": "{{version}}",
"license": "{{license}}",
"bin": {
"{{name}}": "index.js",
"{{command}}": "index.js"
},
"author": {
"name": "{{authorName}}",
"email": "{{authorEmail}}",
"url": "{{authorUrl}}"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"files": [
"index.js",
"utils"
]
}