UNPKG

danger-plugin-commitlint-gitlab

Version:

This plugin checks a merge request title and commit messages to make sure they are well formatted and respect the commitlint/lint

105 lines (104 loc) 2.7 kB
{ "name": "danger-plugin-commitlint-gitlab", "description": "This plugin checks a merge request title and commit messages to make sure they are well formatted and respect the commitlint/lint ", "author": { "name": "Andie SAMADOULOUGOU", "email": "andiesam.erwan@gmail.com" }, "repository": { "type": "git", "url": "https://gitlab.com/AnderwanSAM/danger-plugin-commitlint-gitlab.git" }, "bugs": { "url": "https://gitlab.com/AnderwanSAM/danger-plugin-commitlint-gitlab/issues" }, "homepage": "https://gitlab.com/AnderwanSAM/danger-plugin-commitlint-gitlab#readme", "keywords": [ "danger", "danger-plugin", "commitlint/lint", "Gitlab" ], "version": "1.2.1", "main": "dist/index.js", "types": "types/index.d.ts", "scripts": { "precommit": "lint-staged", "commit": "git-cz", "commitmsg": "validate-commit-msg", "build": "tsc", "test": "jest --coverage", "predocs": "rm -rf docs/", "docs": "esdoc -c .esdoc.json", "prepublish": "npm run build", "semantic-release": "semantic-release", "prettier": "prettier", "prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120", "prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'", "lint": "tslint \"src/**/*.ts\"" }, "publishConfig": { "access": "public" }, "files": [ "./" ], "license": "MIT", "engines": { "node": ">=4.0.0" }, "devDependencies": { "@semantic-release/git": "9.0.1", "@semantic-release/gitlab": "6.2.2", "@semantic-release/npm": "7.1.3", "@types/jest": "27.0.3", "@typescript-eslint/parser": "5.9.1", "commitizen": "2.9.6", "cz-conventional-changelog": "2.0.0", "danger": "*", "husky": "0.13.3", "jest": "27.3.1", "lint-staged": "3.4.1", "prettier": "2.5.1", "semantic-release": "17.4.4", "ts-jest": "27.0.7", "tslint": "5.20.1", "typescript": "4.5.2", "validate-commit-msg": "2.12.1" }, "optionalDependencies": { "esdoc": "0.5.2" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "lint-staged": { "*.@(ts|tsx)": [ "tslint --fix", "npm run prettier-write --", "git add" ] }, "jest": { "moduleFileExtensions": [ "ts", "tsx", "js" ], "transform": { ".(ts|tsx)": "ts-jest" }, "testRegex": "(.test)\\.(ts|tsx)$", "testPathIgnorePatterns": [ "\\.snap$", "<rootDir>/node_modules/" ] }, "dependencies": { "@commitlint/config-conventional": "13.1.0", "@commitlint/lint": "8.3.5", "debug": "4.3.3" } }