package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "checkout",
  3. "version": "2.0.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. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/actions/checkout.git"
  16. },
  17. "keywords": [
  18. "github",
  19. "actions",
  20. "checkout"
  21. ],
  22. "author": "GitHub",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/actions/checkout/issues"
  26. },
  27. "homepage": "https://github.com/actions/checkout#readme",
  28. "dependencies": {
  29. "@actions/core": "^1.1.3",
  30. "@actions/exec": "^1.0.1",
  31. "@actions/github": "^2.2.0",
  32. "@actions/io": "^1.0.1",
  33. "@actions/tool-cache": "^1.1.2",
  34. "uuid": "^3.3.3"
  35. },
  36. "devDependencies": {
  37. "@types/jest": "^24.0.23",
  38. "@types/node": "^12.7.12",
  39. "@types/uuid": "^3.4.6",
  40. "@typescript-eslint/parser": "^2.8.0",
  41. "@vercel/ncc": "^0.23.0",
  42. "eslint": "^5.16.0",
  43. "eslint-plugin-github": "^2.0.0",
  44. "eslint-plugin-jest": "^22.21.0",
  45. "jest": "^24.9.0",
  46. "jest-circus": "^24.9.0",
  47. "js-yaml": "^3.13.1",
  48. "prettier": "^1.19.1",
  49. "ts-jest": "^24.2.0",
  50. "typescript": "^3.6.4"
  51. }
  52. }