jira-precommit-hook
Version:
Git commit hook to verify commit messages are tagged with a JIRA issue number
85 lines (84 loc) • 2.17 kB
JSON
{
"name": "jira-precommit-hook",
"version": "4.0.0",
"description": "Git commit hook to verify commit messages are tagged with a JIRA issue number",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"prepublish": "npm run test && npm run build",
"test": " npm run lint && mocha",
"install": "node bin/install"
},
"bin": {
"jira-precommit": "./bin/jira-precommit"
},
"keywords": [
"jira",
"git",
"precommit-hook"
],
"author": "Matthew L Smith <mtscout6@gmail.com>",
"contributors": [
"Curtis Knox",
"Karl Thompson",
"Matthew Radcliffe",
"Steven Tran",
"Devin Wall",
"Trevor Martz",
"Matt Smith"
],
"files": [
"bin",
"hooks",
"lib",
"LICENSE",
"README.md"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.3.13",
"babel-eslint": "^6.0.0-beta.6",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.4.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.2.0",
"chai-as-promised": "^5.0.0",
"eslint": "^2.2.0",
"eslint-config-exchange-solutions": "6.0.0",
"mocha": "^2.2.4",
"rimraf": "^2.3.4",
"sinon": "^1.14.1",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"argparse": "^1.0.7",
"babel-runtime": "^6.3.13",
"boxen": "^0.5.0",
"chalk": "^1.1.1",
"child-process-promise": "^2.0.1",
"configstore": "^2.0.0",
"es6-promise": "^3.0.2",
"fs-promise": "^0.5.0",
"jira-client": "^3.0.0",
"lodash": "^4.0.0",
"request-promise": "^3.0.0",
"window-size": "^0.2.0",
"wordwrap": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TWExchangeSolutions/jira-precommit-hook.git"
},
"bugs": {
"url": "https://github.com/TWExchangeSolutions/jira-precommit-hook/issues"
},
"engines": {
"node": ">=4.2.3",
"npm": ">=2.13.1"
},
"homepage": "https://github.com/TWExchangeSolutions/jira-precommit-hook#readme"
}