package.json
{
"name": "@happy-coders/fun-cli",
"version": "1.0.0-beta.2",
"description": "Be your project management more fun!",
"publishConfig": {
"access": "public"
},
"keywords": [
"fun",
"cli",
"project-managment",
"task-automator",
"project-setup",
"happy-coders",
"funny-cli",
"typescript",
"jest"
],
"engines": {
"node": ">= 10.13.0",
"npm": ">= 6.11.0"
},
"main": "bin/fun.js",
"preferGlobal": true,
"bin": {
"fun": "bin/fun.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts' --fix",
"start": "node bin/fun.js",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happy-coders/fun-cli.git"
},
"contributors": [
"Samuel Martins <sam.martins.dev@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/happy-coders/fun-cli/issues"
},
"homepage": "https://github.com/happy-coders/fun-cli#readme",
"dependencies": {
"chalk": "4.1.0",
"commander": "6.2.0",
"execa": "^4.1.0",
"inquirer": "7.3.3",
"lodash": "^4.17.20",
"node-emoji": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.164",
"@types/node": "12.12.31",
"@types/node-emoji": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"jest": "26.6.1",
"jest-extended": "^0.11.5",
"prettier": "2.1.2",
"ts-jest": "26.4.3",
"ts-node": "9.0.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn test"
}
}
}