cli-up
Version:
Create a starter template for building nodejs cli
31 lines • 701 B
JSON
{
"name": "{{name}}",
"description": "{{description}}",
"version": "{{version}}",
"bin": {
"{{name}}": "index.js",
"{{command}}": "index.js"
},
"main": "index.js",
"files": [
"index.js",
"utils"
],
"keywords": [
"{{name}}",
"{{authorName}}"
],
"author": {
"name": "{{authorName}}",
"email": "{{authorEmail}}",
"url": "{{authorUrl}}"
},
"engines": {
"node": ">=10"
},
"license": "{{license}}",
"scripts": {
"test": "node test.js && echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"./**/*.{js,json}\""
}
}