2019-12-03 10:28:59 -05:00
|
|
|
{
|
|
|
|
|
"name": "checkout",
|
2026-06-16 22:10:50 +00:00
|
|
|
"version": "7.0.0",
|
2019-12-03 10:28:59 -05:00
|
|
|
"description": "checkout action",
|
2026-06-16 17:10:58 -04:00
|
|
|
"type": "module",
|
2019-12-03 10:28:59 -05:00
|
|
|
"main": "lib/main.js",
|
|
|
|
|
"scripts": {
|
2026-06-16 17:10:58 -04:00
|
|
|
"build": "tsc && ncc build src/main.ts -o dist && node lib/misc/generate-docs.js",
|
2020-05-20 01:34:05 +09:00
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
2019-12-03 10:28:59 -05:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2026-06-16 17:10:58 -04:00
|
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
2021-10-19 14:30:04 -05:00
|
|
|
"licensed-check": "src/misc/licensed-check.sh",
|
|
|
|
|
"licensed-generate": "src/misc/licensed-generate.sh"
|
2019-12-03 10:28:59 -05:00
|
|
|
},
|
|
|
|
|
"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",
|
2026-06-16 17:10:58 -04:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=24"
|
|
|
|
|
},
|
2019-12-03 10:28:59 -05:00
|
|
|
"dependencies": {
|
2026-06-16 17:10:58 -04:00
|
|
|
"@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"
|
2019-12-03 10:28:59 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-04-24 12:04:10 -04:00
|
|
|
"@types/jest": "^29.5.12",
|
2025-08-11 11:52:51 +01:00
|
|
|
"@types/node": "^24.1.0",
|
2024-05-20 09:56:19 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
|
|
|
"@typescript-eslint/parser": "^7.9.0",
|
2026-06-16 17:30:00 -04:00
|
|
|
"@vercel/ncc": "^0.44.0",
|
2024-04-24 12:04:10 -04:00
|
|
|
"eslint": "^8.57.0",
|
|
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2024-09-05 15:04:17 -04:00
|
|
|
"eslint-plugin-jest": "^28.8.2",
|
2024-04-24 12:04:10 -04:00
|
|
|
"jest": "^29.7.0",
|
2026-06-16 12:44:07 -04:00
|
|
|
"js-yaml": "^4.2.0",
|
2026-06-16 17:30:00 -04:00
|
|
|
"prettier": "^3.8.4",
|
|
|
|
|
"ts-jest": "^29.4.11",
|
2026-06-16 17:10:58 -04:00
|
|
|
"ts-node": "^10.9.2",
|
2024-09-05 15:04:17 -04:00
|
|
|
"typescript": "^5.5.4"
|
2019-12-03 10:28:59 -05:00
|
|
|
}
|
2024-03-12 12:11:01 +01:00
|
|
|
}
|