{ "name": "promptly", "version": "3.2.0", "description": "Simple command line prompting utility", "keywords": [ "prompt", "choose", "choice", "cli", "command", "line" ], "author": "André Cruz ", "homepage": "https://github.com/moxystudio/node-promptly", "repository": { "type": "git", "url": "git@github.com:moxystudio/node-promptly.git" }, "license": "MIT", "main": "index.js", "files": [ "lib" ], "scripts": { "lint": "eslint .", "test": "jest --env node --coverage --runInBand", "prerelease": "npm t && npm run lint", "release": "standard-version", "postrelease": "git push --follow-tags origin HEAD && npm publish" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "dependencies": { "read": "^1.0.4" }, "devDependencies": { "@commitlint/cli": "^7.0.0", "@commitlint/config-conventional": "^7.0.1", "eslint": "^5.3.0", "eslint-config-moxy": "^7.0.1", "husky": "^1.3.1", "jest": "^24.5.0", "lint-staged": "^8.1.5", "p-series": "^2.0.0", "standard-version": "^5.0.1" } }