commit-closes
Version:
Parses commit message to find all "fixes", "closes" and "resolves" issue numbers
82 lines • 2.09 kB
JSON
{
"name": "commit-closes",
"description": "Parses commit message to find all \"fixes\", \"closes\" and \"resolves\" issue numbers",
"version": "1.0.1",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": "https://github.com/bahmutov/commit-closes/issues",
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm run deps",
"npm test",
"git add src/*.js",
"npm run ban"
],
"pre-push": [
"npm run secure",
"npm run license",
"npm run ban -- --all",
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"engines": {
"node": ">=6"
},
"files": [
"src/*.js",
"!src/*-spec.js"
],
"homepage": "https://github.com/bahmutov/commit-closes#readme",
"keywords": [
"commit",
"fix",
"git",
"github",
"message",
"parse"
],
"license": "MIT",
"main": "src/",
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/commit-closes.git"
},
"scripts": {
"ban": "ban",
"deps": "deps-ok && dependency-check --no-dev .",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"lint": "standard --verbose --fix src/*.js",
"pretest": "npm run lint",
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "npm run unit",
"unit": "mocha src/*-spec.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"ban-sensitive-files": "1.9.0",
"dependency-check": "2.9.1",
"deps-ok": "1.2.0",
"git-issues": "1.3.1",
"license-checker": "12.0.0",
"mocha": "3.4.2",
"nsp": "2.6.3",
"pre-git": "3.15.0",
"semantic-release": "^6.3.6",
"snap-shot": "2.17.0",
"standard": "10.0.2"
},
"dependencies": {
"check-more-types": "2.24.0",
"lazy-ass": "1.6.0"
}
}