cz-adapter-eslint
Version:
A commitizen adapter for the conventional-changelog eslint preset.
62 lines (61 loc) • 1.51 kB
JSON
{
"name": "cz-adapter-eslint",
"description": "A commitizen adapter for the conventional-changelog eslint preset.",
"license": "ISC",
"author": "Jeff Nelson (http://tidaltheory.co/)",
"homepage": "https://github.com/stormwarning/cz-adapter-eslint",
"repository": "stormwarning/cz-adapter-eslint",
"version": "0.3.0",
"main": "dist/cz-adapter-eslint.js",
"scripts": {
"build": "microbundle --target node --external all --compress false --sourcemap false -i src/index.js -o dist -f cjs",
"cm": "git-cz",
"lint": "prettier-eslint 'src/*.js' --list-different",
"prepublishOnly": "npm run build",
"test": "npm run lint"
},
"config": {
"commitizen": {
"path": "./dist/cz-adapter-eslint.js"
}
},
"dependencies": {
"lodash.map": "^4.6.0",
"longest": "^2.0.1",
"right-pad": "^1.0.1",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@zazen/eslint-config": "^1.0.0",
"commitizen": "~3.1.1",
"eslint": "^5.16.0",
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"microbundle": "^0.11.0"
},
"keywords": [
"changelog",
"commitizen",
"commitizen-adapter",
"conventional-changelog",
"eslint"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
}