UNPKG

npm-fzf

Version:

Fuzzy search npm package with fzf

72 lines (71 loc) 1.89 kB
{ "name": "npm-fzf", "version": "1.1.6", "description": "Fuzzy search npm package with fzf", "main": "./bin/cli.js", "bin": { "npf": "./bin/cli.js" }, "engines": { "node": ">=8" }, "scripts": { "test": "npm-run-all jest eslint --parallel --silent", "jest": "jest --forceExit --detectOpenHandles", "eslint": "eslint . --ignore-path .gitignore --cache --cache-location \"./eslint/.eslintcache\" ", "eslint:makeHtml": "npm run eslint -- --format html -o ./eslint/report.html", "eslint:open": "npm run eslint:makeHtml --silent && opn ./eslint/report.html", "watch": "nodemon --exec npm run test", "commit": "git-cz", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "git+https://github.com/hankchanocd/npm-fzf.git" }, "keywords": [ "npf", "npm", "fzf", "search" ], "files": [ "src/", "bin/", "README.md" ], "author": "Hank Chan <hankchanth@icloud.com> (https://github.com/hankchanocd)", "license": "MIT", "bugs": { "url": "https://github.com/hankchanocd/npm-fzf/issues" }, "homepage": "https://github.com/hankchanocd/npm-fzf#readme", "dependencies": { "@hankchanocd/npmlist": "^8.0.2", "command-exists": "^1.2.8", "es6-promisify": "^6.0.1", "node-fzf": "^0.2.0" }, "devDependencies": { "commitizen": "^3.1.1", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.16.0", "eslint-plugin-import": "^2.18.0", "eslint-plugin-jest": "^22.7.2", "eslint-plugin-promise": "^4.2.1", "ghooks": "^2.0.4", "jest": "^24.8.0", "nodemon": "^1.19.1", "npm-run-all": "^4.1.5", "opn-cli": "^4.1.0", "semantic-release": "^15.13.18" }, "config": { "ghooks": { "pre-push": "npm run test" }, "commitizen": { "path": "node_modules/cz-conventional-changelog" } } }