package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "checkout",
  3. "version": "5.0.0",
  4. "description": "checkout action",
  5. "main": "lib/main.js",
  6. "scripts": {
  7. "build": "tsc && ncc build && node lib/misc/generate-docs.js",
  8. "format": "prettier --write '**/*.ts'",
  9. "format-check": "prettier --check '**/*.ts'",
  10. "lint": "eslint src/**/*.ts",
  11. "test": "jest",
  12. "licensed-check": "src/misc/licensed-check.sh",
  13. "licensed-generate": "src/misc/licensed-generate.sh"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/actions/checkout.git"
  18. },
  19. "keywords": [
  20. "github",
  21. "actions",
  22. "checkout"
  23. ],
  24. "author": "GitHub",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/actions/checkout/issues"
  28. },
  29. "homepage": "https://github.com/actions/checkout#readme",
  30. "dependencies": {
  31. "@actions/core": "^1.11.1",
  32. "@actions/exec": "^1.1.1",
  33. "@actions/github": "^6.0.0",
  34. "@actions/io": "^1.1.3",
  35. "@actions/tool-cache": "^2.0.2"
  36. },
  37. "devDependencies": {
  38. "@types/jest": "^29.5.12",
  39. "@types/node": "^24.1.0",
  40. "@typescript-eslint/eslint-plugin": "^7.9.0",
  41. "@typescript-eslint/parser": "^7.9.0",
  42. "@vercel/ncc": "^0.38.1",
  43. "eslint": "^8.57.0",
  44. "eslint-plugin-github": "^4.10.2",
  45. "eslint-plugin-jest": "^28.8.2",
  46. "jest": "^29.7.0",
  47. "jest-circus": "^29.7.0",
  48. "js-yaml": "^4.2.0",
  49. "prettier": "^3.3.3",
  50. "ts-jest": "^29.2.5",
  51. "typescript": "^5.5.4"
  52. }
  53. }