mirror of
https://github.com/actions/checkout.git
synced 2026-07-13 18:31:44 +03:00
e389253e4d
Bumps the minor-npm-dependencies group with 3 updates: [@vercel/ncc](https://github.com/vercel/ncc), [eslint-plugin-github](https://github.com/github/eslint-plugin-github) and [prettier](https://github.com/prettier/prettier). Updates `@vercel/ncc` from 0.44.0 to 0.44.1 - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.44.0...0.44.1) Updates `eslint-plugin-github` from 6.0.0 to 6.1.1 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v6.0.0...v6.1.1) Updates `prettier` from 3.8.4 to 3.9.5 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.8.4...3.9.5) --- updated-dependencies: - dependency-name: "@vercel/ncc" dependency-version: 0.44.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-npm-dependencies - dependency-name: eslint-plugin-github dependency-version: 6.1.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-npm-dependencies - dependency-name: prettier dependency-version: 3.9.5 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-npm-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "checkout",
|
|
"version": "7.0.0",
|
|
"description": "checkout action",
|
|
"type": "module",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build src/main.ts -o dist && node lib/misc/generate-docs.js",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
"licensed-check": "src/misc/licensed-check.sh",
|
|
"licensed-generate": "src/misc/licensed-generate.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/checkout.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"checkout"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/checkout/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/checkout#readme",
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/github": "^9.1.1",
|
|
"@actions/io": "^3.0.2",
|
|
"@actions/tool-cache": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^24.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
"@typescript-eslint/parser": "^8.54.0",
|
|
"@vercel/ncc": "^0.44.1",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-github": "^6.1.1",
|
|
"eslint-plugin-jest": "^29.12.1",
|
|
"jest": "^29.7.0",
|
|
"js-yaml": "^4.2.0",
|
|
"prettier": "^3.9.5",
|
|
"ts-jest": "^29.4.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|