commitlint-action/package.json
Luís Murta 942f418187
All checks were successful
/ test (push) Successful in 16s
feat: add commitlint linter
2025-06-13 22:31:12 +01:00

28 lines
697 B
JSON

{
"name": "commitlint-action",
"version": "0.1.0",
"description": "GitHub Action based on @commitlint/lint",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git.rosemyrtle.work/satprog/commitlint-action"
},
"author": "Luís Murta",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@commitlint/lint": "^19.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"rollup": "^4.43.0"
}
}