UNPKG

create-cliz

Version:
128 lines (127 loc) 2.91 kB
{ "name": "create-cliz", "version": "1.0.7", "description": "Cliz Multiple Commands CLI Template", "keywords": [ "cliz", "cli", "zcorky", "zodash", "doreamon" ], "homepage": "https://github.com/cliz-design/create-cliz#readme", "bugs": { "url": "https://github.com/cliz-design/create-cliz/issues" }, "repository": { "type": "git", "url": "git+https://github.com/cliz-design/create-cliz.git" }, "license": "MIT", "author": "Zero <tobewhatwewant@gmail.com>", "main": "lib/cli.js", "typings": "lib/cli.d.ts", "bin": { "create-cliz": "lib/cli.js" }, "directories": { "lib": "lib" }, "files": [ "lib" ], "scripts": { "bootstrap": "yarn", "dev": "yarn watch", "build": "yarn clean && tsc -p tsconfig.build.json", "watch": "tsc -p tsconfig.build.json -w", "clean": "rm -rf lib", "test": "jest -w 1", "coverage": "codecov", "cli": "node lib/cli.js", "prepare": "husky install" }, "jest": { "roots": [ "__tests__" ], "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": ".*\\.(spec|test)\\.(ts|tsx)$", "moduleDirectories": [ "node_modules", "src" ], "moduleFileExtensions": [ "ts", "tsx", "js", "jsx" ], "coverageDirectory": "./coverage/", "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.{ts,tsx}" ], "coverageThreshold": { "global": { "branches": 0, "functions": 0, "lines": 0, "statements": 0 } }, "preset": "ts-jest" }, "dependencies": { "@cliz/cli": "^1.0.19", "boxen": "v5" }, "devDependencies": { "@commitlint/cli": "^16.2.3", "@commitlint/config-conventional": "^16.2.1", "@types/git-url-parse": "^9.0.1", "@types/jest": "^27.4.1", "@types/node": "^17.0.23", "@typescript-eslint/eslint-plugin": "^5.18.0", "@typescript-eslint/parser": "^5.18.0", "@zcorky/tsconfig": "^0.0.3", "codecov": "^3.8.3", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.12.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-react": "^7.29.4", "eslint-plugin-react-hooks": "^4.4.0", "husky": "5.2.0", "jest": "^27.5.1", "lint-staged": "^12.3.7", "prettier": "^2.4.1", "ts-jest": "^27.1.4", "typescript": "^4.4.3" }, "publishConfig": { "access": "public" }, "lint-staged": { "**/*.ts": [ "echo 'lint stage run'", "prettier --write --ignore-unknown", "eslint --fix" ], "*.{json.css,md,yml,yaml}": [ "prettier --write" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "cliz": { "name": "create-cliz" } }