mirror of
https://github.com/imjasonh/apidiff-action
synced 2026-07-06 22:52:43 +00:00
Bumps the development-dependencies group with 2 updates: [eslint](https://github.com/eslint/eslint) and [lint-staged](https://github.com/lint-staged/lint-staged). Updates `eslint` from 10.4.0 to 10.4.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.4.0...v10.4.1) Updates `lint-staged` from 17.0.5 to 17.0.7 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v17.0.5...v17.0.7) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: lint-staged dependency-version: 17.0.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
48 lines
1 KiB
JSON
48 lines
1 KiB
JSON
{
|
|
"author": "Jason Hall",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0"
|
|
},
|
|
"description": "GitHub Action for detecting breaking API changes in Go code",
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.38.4",
|
|
"eslint": "^10.4.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^17.0.7",
|
|
"prettier": "^3.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0 <21.0.0"
|
|
},
|
|
"keywords": [
|
|
"github-action",
|
|
"go",
|
|
"golang",
|
|
"api",
|
|
"compatibility",
|
|
"breaking-changes"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,yml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"main": "index.js",
|
|
"name": "apidiff-action",
|
|
"scripts": {
|
|
"build": "ncc build index.js -o dist",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint .",
|
|
"prepare": "husky install",
|
|
"test": "node --test"
|
|
},
|
|
"version": "1.0.0"
|
|
}
|