5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 08:06:54 +00:00
commitlint-github-action/package.json
Wagner Santos 51913c302c style: add eslint to the project
The config is based on airbnb shared config, with some rules that work better with the project.
2021-02-18 14:43:25 -03:00

67 lines
2 KiB
JSON

{
"name": "commitlint-github-action",
"version": "2.2.4",
"description": "commitlint github action",
"private": true,
"main": "run.js",
"scripts": {
"test": "NODE_PATH=./node_modules jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint --ignore-path .gitignore ."
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagoid/commitlint-github-action.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/wagoid/commitlint-github-action",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@commitlint/config-angular": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@commitlint/config-lerna-scopes": "^9.1.2",
"@commitlint/config-patternplate": "^9.1.2",
"@commitlint/format": "^9.1.2",
"@commitlint/lint": "^9.1.2",
"@commitlint/load": "^9.1.2",
"commitlint-config-jira": "^1.4.1",
"commitlint-plugin-jira-rules": "^1.4.0",
"conventional-changelog-lint-config-canonical": "^1.0.0",
"dargs": "^7.0.0",
"execa": "^5.0.0",
"lerna": "^3.22.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/ensure": "^11.0.0",
"@commitlint/test": "^9.0.1",
"@commitlint/test-environment": "^9.0.1",
"commitlint-plugin-function-rules": "^1.1.20",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"testdouble": "^3.16.1",
"yaml": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}