package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "checkout",
  3. "version": "4.2.2",
  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.10.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.1",
  36. "uuid": "^9.0.1"
  37. },
  38. "devDependencies": {
  39. "@types/jest": "^29.5.12",
  40. "@types/node": "^20.12.12",
  41. "@types/uuid": "^9.0.8",
  42. "@typescript-eslint/eslint-plugin": "^7.9.0",
  43. "@typescript-eslint/parser": "^7.9.0",
  44. "@vercel/ncc": "^0.38.1",
  45. "eslint": "^8.57.0",
  46. "eslint-plugin-github": "^4.10.2",
  47. "eslint-plugin-jest": "^28.8.2",
  48. "jest": "^29.7.0",
  49. "jest-circus": "^29.7.0",
  50. "js-yaml": "^4.1.0",
  51. "prettier": "^3.3.3",
  52. "ts-jest": "^29.2.5",
  53. "typescript": "^5.5.4"
  54. }
  55. }