UNPKG

pivotal-flow

Version:

🔀 A command-line tool that helps you manage & automate your workflow to use with PivotalTracker.

107 lines (106 loc) • 2.86 kB
{ "name": "pivotal-flow", "version": "2.0.0", "description": "🔀 A command-line tool that helps you manage & automate your workflow to use with PivotalTracker.", "engines": { "node": ">=8", "npm": ">=6.8.0", "git": ">=2.11.0" }, "scripts": { "test": "jest", "test:watch": "jest --watch", "lint": "eslint .", "lint:fix": "npm run lint -- --fix", "build": "rm -rf dist && tsc", "postbuild": "./scripts/make-executable.sh", "start": "tsc --watch", "prepublishOnly": "npm run test && npm run build" }, "files": [ "dist" ], "bin": { "pivotal-flow": "dist/cli.js", "pf": "dist/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/ClearTax/pivotal-flow.git" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "keywords": [ "pivotal", "pivotaltracker", "husky", "git-hooks", "git", "hook", "hooks", "post-checkout", "commit-msg", "prepare-commit-msg" ], "bugs": { "url": "https://github.com/ClearTax/pivotal-flow/issues" }, "homepage": "https://github.com/ClearTax/pivotal-flow#readme", "author": "ClearTax Engineering", "license": "MIT", "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "node -r ts-node/register/transpile-only src/cli.ts hook check-story-id-in-commit", "post-checkout": "node -r ts-node/register/transpile-only src/cli.ts hook check-story-id-in-branch", "prepare-commit-msg": "node -r ts-node/register/transpile-only src/cli.ts hook add-story-id-to-commit" } }, "lint-staged": { "**/*.{json}": [ "prettier --write", "git add" ], "**/*.{ts,js}": [ "eslint --fix", "git add" ] }, "dependencies": { "@sindresorhus/slugify": "^0.9.1", "axios": "^0.19.0", "chalk": "^3.0.0", "cli-table": "^0.3.1", "commander": "^4.0.0", "cosmiconfig": "^6.0.0", "fast-memoize": "^2.5.1", "fuzzy": "^0.1.3", "inquirer": "^7.0.0", "inquirer-autocomplete-prompt": "^1.0.1", "ora": "^4.0.2", "serialize-javascript": "^2.1.0" }, "devDependencies": { "@types/cli-table": "^0.3.0", "@types/eslint": "^6.1.2", "@types/eslint-plugin-prettier": "^2.2.0", "@types/inquirer": "^6.5.0", "@types/jest": "^24.0.19", "@types/serialize-javascript": "^1.5.0", "@typescript-eslint/eslint-plugin": "^2.9.0", "@typescript-eslint/parser": "^2.9.0", "eslint": "^6.7.1", "eslint-config-prettier": "^6.4.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-lodash": "^6.0.0", "eslint-plugin-prettier": "^3.1.1", "husky": "^3.0.5", "jest": "^24.9.0", "lint-staged": "^9.2.5", "prettier": "^1.18.2", "ts-jest": "^24.1.0", "ts-node": "^8.4.1", "typescript": "^3.6.3" } }