simple-commit-message
Version:
Simple commit message wizard and validator; works with commitizen and pre-git
63 lines • 1.6 kB
JSON
{
"name": "simple-commit-message",
"description": "Simple commit message wizard and validator; works with commitizen and pre-git",
"main": "src/index.js",
"version": "1.0.1",
"scripts": {
"ban": "node --harmony node_modules/.bin/ban",
"test": "mocha --harmony src/*-spec.js",
"lint": "standard src/*.js",
"commit": "commit-wizard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/simple-commit-message.git"
},
"files": [
"src/*.js",
"!src/*-spec.js"
],
"keywords": [
"commit",
"message",
"validation",
"wizard",
"pre-git",
"commitizen"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/simple-commit-message/issues"
},
"homepage": "https://github.com/bahmutov/simple-commit-message#readme",
"devDependencies": {
"ban-sensitive-files": "1.7.2",
"mocha": "2.3.4",
"pre-git": "2.0.2",
"semantic-release": "^4.3.5",
"standard": "5.4.1"
},
"config": {
"pre-git": {
"commit-msg": "validate-commit-msg",
"pre-commit": [
"npm run ban",
"npm run lint",
"npm test"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"dependencies": {
"check-more-types": "2.3.0",
"lazy-ass": "1.3.0",
"word-wrap": "1.1.0"
}
}