flow-helper
Version:
Universal tool to simplify commit messages building
49 lines (48 loc) • 1.18 kB
JSON
{
"name": "flow-helper",
"version": "2.0.20",
"description": "Universal tool to simplify commit messages building",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mr": "cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm version patch && git push & yarn build",
"build": "rm -rf ./dist && tsc --declaration"
},
"author": {
"name": "itersh",
"email": "plopr@ya.ru"
},
"keywords": [
"flow",
"helper",
"tool"
],
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@commitlint/format": "^7.3.1",
"@types/es6-promise": "^3.3.0",
"@types/node": "^17.0.21",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{tsx,jsx,ts,js,json,css,md}": [
"prettier --config .prettierrc --write src/**/*.{tsx,jsx,ts,js,json,css,md}",
"git add"
]
}
}