UNPKG

ptjs-cli

Version:

A tool for quickly creating projects based on templates

73 lines (72 loc) 1.66 kB
{ "name": "ptjs-cli", "version": "1.1.0", "description": "A tool for quickly creating projects based on templates", "main": "lib/index.js", "scripts": { "test": "npm run eslint && npm run mocha", "eslint": "eslint cmd/. lib/. --config .eslintrc.json", "mocha": "mocha test/ --recursive --exit" }, "repository": { "type": "git", "url": "https://github.com/bestjss/ptjs-cli.git" }, "keywords": [ "Project", "Template", "Gitlib", "Github", "Cli", "Clone", "Copy" ], "author": { "name": "JS", "email": "jsduan@bestjss.com", "url": "https://www.bestjss.com" }, "bugs": { "url": "https://github.com/bestjss/ptjs-cli/issues", "email": "jsduan@bestjss.com" }, "license": "Apache-2.0", "bin": { "pt": "bin/ptjs-cli.js" }, "husky": { "hooks": { "pre-commit": "npm run test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "" } }, "dependencies": { "chalk": "^2.4.2", "commander": "^2.19.0", "compare-versions": "^3.4.0", "crypto-random-string": "^1.0.0", "deepmerge": "^3.2.0", "figlet": "^1.2.1", "fs-extra": "^7.0.1", "inquirer": "^6.2.2", "package-json": "^6.0.0", "read-yaml": "^1.1.0", "simple-git": "^1.107.0", "split-string": "^6.0.0", "table": "^5.2.3", "write-yaml": "^1.0.0" }, "devDependencies": { "@commitlint/cli": "^7.5.2", "@commitlint/config-conventional": "^7.5.0", "chai": "^4.2.0", "eslint": "^5.13.0", "husky": "^1.3.1", "mocha": "^6.0.0" }, "engines": { "node": ">= 9.11.2", "npm": ">= 5.6.0" } }