bin-up
Version:
Finds an installed tool in node_modules/.bin folders from current up to the git root
89 lines (88 loc) • 2.13 kB
JSON
{
"name": "bin-up",
"description": "Finds an installed tool in node_modules/.bin folders from current up to the git root",
"version": "1.3.2",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/bin-up/issues",
"bin": {
"bin-up": "bin/bin-up"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"npm run test-direct",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"bin",
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/bin-up#readme",
"keywords": [
"bin",
"find",
"npm",
"npm bin",
"search",
"tool",
"utility"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/bin-up.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix bin/bin-up src/*.js",
"pretest": "npm run lint",
"size": "npm pack --dry",
"test": "$(./bin/bin-up standard) --version",
"test-in-subfolder": "cd test/nested; npm test",
"test-direct": "./bin/bin-up standard --version",
"unit": "mocha src/*-spec.js",
"semantic-release": "semantic-release"
},
"devDependencies": {
"ban-sensitive-files": "1.9.2",
"dependency-check": "2.8.0",
"deps-ok": "1.2.0",
"execa-wrap": "1.4.0",
"getos-cli": "1.0.1",
"git-issues": "1.3.1",
"lazy-ass": "1.6.0",
"license-checker": "11.0.0",
"mocha": "3.4.2",
"pre-git": "3.15.0",
"semantic-release": "15.13.16",
"standard": "10.0.2"
},
"dependencies": {
"execa": "2.0.5"
}
}