package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "checkout",
  3. "version": "3.1.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.10.0",
  32. "@actions/exec": "^1.0.1",
  33. "@actions/github": "^2.2.0",
  34. "@actions/io": "^1.1.2",
  35. "@actions/tool-cache": "^1.1.2",
  36. "uuid": "^3.3.3"
  37. },
  38. "devDependencies": {
  39. "@types/jest": "^27.0.2",
  40. "@types/node": "^12.7.12",
  41. "@types/uuid": "^3.4.6",
  42. "@typescript-eslint/eslint-plugin": "^5.45.0",
  43. "@typescript-eslint/parser": "^5.45.0",
  44. "@zeit/ncc": "^0.20.5",
  45. "eslint": "^7.32.0",
  46. "eslint-plugin-github": "^4.3.2",
  47. "eslint-plugin-jest": "^25.7.0",
  48. "jest": "^27.3.0",
  49. "jest-circus": "^27.3.0",
  50. "js-yaml": "^3.13.1",
  51. "prettier": "^1.19.1",
  52. "ts-jest": "^27.0.7",
  53. "typescript": "^4.4.4"
  54. }
  55. }