git-pre-push
Version:
Automatically install pre-push hooks for your npm modules (based on pre-commit package by Arnout Kazemier).
44 lines (43 loc) • 1.33 kB
JSON
{
"name": "git-pre-push",
"version": "0.0.5",
"description": "Automatically install pre-push hooks for your npm modules (based on pre-commit package by Arnout Kazemier).",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- test.js",
"example-fail": "echo \"This is the example hook, I exit with 1\" && exit 1",
"example-pass": "echo \"This is the example hook, I exit with 0\" && exit 0",
"install": "node install.js",
"test": "mocha test.js",
"_test": "echo Skipping tests && echo && exit 1",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- test.js",
"uninstall": "node uninstall.js"
},
"repository": {
"type": "git",
"url": "git://github.com/alykoshin/git-pre-push.git"
},
"keywords": [
"git",
"hooks",
"npm",
"pre-push",
"prepush",
"run",
"test",
"development"
],
"author": "(based on pre-commit by Arnout Kazemier <opensource@observe.it>)",
"homepage": "https://github.com/alykoshin/git-pre-push",
"license": "MIT",
"dependencies": {
"cross-spawn": "2.2.x",
"which": "1.2.x"
},
"devDependencies": {
"assume": "1.4.x",
"istanbul": "0.4.x",
"mocha": "2.4.x",
"git-pre-push": "git://github.com/alykoshin/git-pre-push.git"
}
}