package.json
1 { 2 "name": "promptly", 3 "version": "3.2.0", 4 "description": "Simple command line prompting utility", 5 "keywords": [ 6 "prompt", 7 "choose", 8 "choice", 9 "cli", 10 "command", 11 "line" 12 ], 13 "author": "André Cruz <andre@moxy.studio>", 14 "homepage": "https://github.com/moxystudio/node-promptly", 15 "repository": { 16 "type": "git", 17 "url": "git@github.com:moxystudio/node-promptly.git" 18 }, 19 "license": "MIT", 20 "main": "index.js", 21 "files": [ 22 "lib" 23 ], 24 "scripts": { 25 "lint": "eslint .", 26 "test": "jest --env node --coverage --runInBand", 27 "prerelease": "npm t && npm run lint", 28 "release": "standard-version", 29 "postrelease": "git push --follow-tags origin HEAD && npm publish" 30 }, 31 "husky": { 32 "hooks": { 33 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", 34 "pre-commit": "lint-staged" 35 } 36 }, 37 "lint-staged": { 38 "*.js": [ 39 "eslint --fix", 40 "git add" 41 ] 42 }, 43 "commitlint": { 44 "extends": [ 45 "@commitlint/config-conventional" 46 ] 47 }, 48 "dependencies": { 49 "read": "^1.0.4" 50 }, 51 "devDependencies": { 52 "@commitlint/cli": "^7.0.0", 53 "@commitlint/config-conventional": "^7.0.1", 54 "eslint": "^5.3.0", 55 "eslint-config-moxy": "^7.0.1", 56 "husky": "^1.3.1", 57 "jest": "^24.5.0", 58 "lint-staged": "^8.1.5", 59 "p-series": "^2.0.0", 60 "standard-version": "^5.0.1" 61 } 62 }