UNPKG

create-yo

Version:

Use Yeoman generators via "npm init"

94 lines (93 loc) 2.11 kB
{ "name": "create-yo", "version": "2.0.0", "description": "Use Yeoman generators via \"npm init\"", "main": "src/create-yo.js", "bin": { "create-yo": "src/create-yo.js" }, "scripts": { "posttest": "eslint src test", "test": "mocha", "release": "semantic-version -a" }, "keywords": [ "yo", "yeoman", "npm", "init", "create", "scaffolding", "generator", "scaffold", "initialize", "npx" ], "author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)", "license": "Apache-2.0", "dependencies": { "ansi-bold": "^0.1.1", "global-dirs": "^2.0.1", "import-from": "^3.0.0", "log-symbols": "^4.0.0" }, "engines": { "node": ">=10.0.0", "npm": ">=6.1.0" }, "devDependencies": { "@commitlint/config-conventional": "^8.3.4", "commitlint": "^8.3.5", "eslint": "^7.0.0", "eslint-config-prettier": "^6.11.0", "eslint-config-semistandard": "^15.0.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.20.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "husky": "^4.2.5", "lint-staged": "^10.2.2", "mocha": "^7.1.2", "prettier": "^1.19.1", "rewiremock": "^3.14.1", "sinon": "^9.0.2", "standard-version": "^8.0.0", "unexpected": "^11.14.0", "unexpected-sinon": "^10.11.2" }, "repository": { "type": "git", "url": "https://github.com/boneskull/create-yo.git" }, "files": [ "src/create-yo.js" ], "lint-staged": { "*.js": [ "eslint --fix" ], "*.{yml,md}": [ "prettier --write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "prettier": { "singleQuote": true, "bracketSpacing": false, "endOfLine": "auto", "trailingComma": "none", "arrowParens": "avoid" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }