UNPKG

conventional-changelog-lint-config-io

Version:
63 lines (62 loc) 1.48 kB
{ "name": "conventional-changelog-lint-config-io", "version": "0.2.0", "description": "A Commitlint Config.", "main": "src/index.js", "homepage": "https://github.com/fjc0k/conventional-changelog-lint-config-io", "license": "MIT", "repository": { "type": "git", "url": "git@github.com:fjc0k/conventional-changelog-lint-config-io.git" }, "bugs": { "url": "https://github.com/fjc0k/conventional-changelog-lint-config-io/issues" }, "keywords": [ "conventional-changelog-lint", "conventional-changelog-lint-config" ], "author": { "name": "Jay Fong", "email": "fjc0kb@gmail.com", "url": "https://github.com/fjc0k" }, "scripts": { "release": "standard-version -a && git push --follow-tags origin master && npm publish" }, "eslintConfig": { "root": true, "extends": "io" }, "commitlint": { "extends": [ "./src/index.js" ] }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ "eslint --fix", "git add" ] }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "devDependencies": { "@commitlint/cli": "^7.5.2", "eslint": "^5.16.0", "eslint-config-io": "^0.5.0", "standard-version": "^5.0.2", "husky": "^1.3.1", "lint-staged": "^8.1.5" }, "peerDependencies": { "@commitlint/cli": "^7.5.2" }, "dependencies": { "@commitlint/config-conventional": "^7.5.0" } }