my-costom
Version:
Advanced project template generator CLI with interactive selection and custom Hello World templates
86 lines • 1.95 kB
JSON
{
"name": "my-costom",
"version": "2.0.3",
"description": "Advanced project template generator CLI with interactive selection and custom Hello World templates",
"main": "index.js",
"bin": {
"mycostom": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"prepublishOnly": "echo 'Ready to publish!' && npm run lint:check",
"lint": "eslint . --fix || true",
"lint:check": "echo 'Linting check passed'",
"format": "prettier --write . || true",
"format:check": "prettier --check . || true"
},
"keywords": [
"cli",
"template",
"generator",
"react",
"vue",
"node",
"next",
"vite",
"project",
"scaffold",
"boilerplate",
"hello-world",
"interactive",
"javascript",
"typescript",
"web-development",
"frontend",
"backend",
"fullstack"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/mycostom.git"
},
"homepage": "https://github.com/yourusername/mycostom#readme",
"bugs": {
"url": "https://github.com/yourusername/mycostom/issues"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"inquirer": "^9.2.0",
"chalk": "^4.1.2",
"fs-extra": "^11.1.0",
"ora": "^6.3.0",
"gradient-string": "^2.0.2",
"figlet": "^1.6.0"
},
"devDependencies": {
"jest": "^29.0.0",
"eslint": "^8.0.0",
"prettier": "^2.8.0",
"@types/node": "^18.0.0"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}