UNPKG

aj-flutter-cli

Version:
86 lines (85 loc) 1.95 kB
{ "name": "aj-flutter-cli", "version": "1.0.6", "description": "a cli for creating flutter projects ", "keywords": [ "aj-flutter-cli", "template", "flutter-cli", "flutter cli", "flutter", "getx", "cli", "eslint", "tslint", "build", "init" ], "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint . --ext .js,.ts", "lint-fix": "eslint . --fix --ext .js,.ts", "format": "prettier --write \"bin/**/*.ts\" \"lib/**/*.ts\" \"typings/**/*.ts\"", "commit": "git-cz", "start": "ts-node bin/aj-flutter-cli.ts", "watch": "tsc -w .", "build": "tsc -p ." }, "bin": { "ajFlutter": "bin/aj-flutter-cli.js" }, "repository": "https://github.com/Tom-Jack-Huang/aj-flutter-cli.git", "author": "Tom-Jack-Huang", "license": "ISC", "dependencies": { "chalk": "^3.0.0", "commander": "^4.0.1", "didyoumean": "^1.2.1", "download-git-repo": "^3.0.2", "figlet": "^1.2.4", "fs-extra": "^8.1.0", "inquirer": "^7.0.0", "ora": "^4.0.3", "replace": "^1.2.0", "semver": "^7.1.1", "shelljs": "^0.8.4" }, "devDependencies": { "@types/fs-extra": "^9.0.11", "@types/node": "^12.12.22", "babel-eslint": "^10.1.0", "commitizen": "^4.0.3", "cz-customizable": "^6.2.0", "eslint": "^6.8.0", "eslint-config-prettier": "^7.1.0", "eslint-plugin-prettier": "^3.1.2", "husky": "^4.3.6", "lint-staged": "^9.5.0", "prettier": "^1.19.1", "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "config": { "commitizen": { "path": "node_modules/cz-customizable" } }, "cz-customizable": { "config": ".cz-config.js" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js}": [ "npm run format", "git add" ] }, "engines": { "node": ">=8.9" } }