UNPKG

boil-cli-tool

Version:

CLI tool - boilerplate template manager and generator

90 lines (89 loc) 2.46 kB
{ "name": "boil-cli-tool", "description": "CLI tool - boilerplate template manager and generator", "version": "2.0.1", "author": "Jordan-Eckowitz @Jordan-Eckowitz", "bin": { "boil": "./bin/run" }, "bugs": "https://github.com/Jordan-Eckowitz/boil-cli/issues", "dependencies": { "@oclif/command": "^1.8.0", "@oclif/config": "^1.17.0", "@oclif/plugin-help": "^3.2.0", "@types/inquirer": "^7.3.1", "@types/lodash": "^4.14.165", "@types/node-emoji": "^1.8.1", "@types/shelljs": "^0.8.8", "chalk": "^4.1.0", "cli-ux": "^5.5.1", "inquirer": "^7.3.3", "lodash": "^4.17.20", "node-emoji": "^1.10.0", "read-data": "^1.1.0", "shelljs": "^0.8.4", "tslib": "^1.14.1" }, "devDependencies": { "@oclif/dev-cli": "^1.26.0", "@oclif/test": "^1.2.8", "@types/chai": "^4.2.14", "@types/mocha": "^5.2.7", "@types/node": "^10.17.51", "chai": "^4.2.0", "del": "^6.0.0", "eslint": "^5.16.0", "eslint-config-oclif": "^3.1.0", "eslint-config-oclif-typescript": "^0.1.0", "globby": "^10.0.2", "husky": "^4.3.8", "mocha": "^11.0.1", "nyc": "^17.1.0", "ts-node": "^8.10.2", "typescript": "^3.9.7" }, "engines": { "node": ">=8.0.0" }, "files": [ "/bin", "/lib", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "homepage": "https://jordan-eckowitz.github.io/boil-cli-docs", "keywords": [ "cli", "template", "boilerplate", "generator", "boilerplate-template", "boilerplate-application" ], "license": "MIT", "main": "lib/index.js", "oclif": { "commands": "./lib/commands", "bin": "boil", "plugins": [ "@oclif/plugin-help" ] }, "repository": "Jordan-Eckowitz/boil-cli", "scripts": { "postpack": "rm -f oclif.manifest.json", "posttest": "eslint . --ext .ts --config .eslintrc", "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme", "test": "rm -rf .boilerplate && bin/run init && TS_NODE_FILES=true nyc --reporter=html --reporter=text --extension .ts mocha --require ts-node/register --forbid-only \"test/**/*.test.ts\"", "version": "oclif-dev readme && git add README.md", "lint": "eslint . --ext .ts,.js --ignore-pattern coverage", "release": "npx np --no-2fa", "boil": "bin/run" }, "husky": { "hooks": { "pre-commit": "npm run lint" } }, "types": "lib/index.d.ts" }