@v1b3m/create-project
Version:
A CLI to bootstrap my new projects
38 lines (37 loc) • 899 B
JSON
{
"name": "@v1b3m/create-project",
"version": "1.0.0",
"description": "A CLI to bootstrap my new projects",
"main": "src/index.js",
"bin": {
"@v1b3m/create-project": "bin/create-project",
"create-project": "bin/create-project"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"create-project"
],
"author": "v1b3m <vibenjamin6@gmail.com> (https://v1b3m.github.io/)",
"license": "ISC",
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2",
"esm": "^3.2.25",
"execa": "^2.0.3",
"inquirer": "^6.5.0",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
},
"files": [
"bin/",
"src/",
"templates/"
]
}