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-full": "npm i --package-lock && npm ci && npm run format && npm run build && npm run test",
  8. "build": "tsc && ncc build && node lib/misc/generate-docs.js",
  9. "format": "prettier --write '**/*.ts'",
  10. "format-check": "prettier --check '**/*.ts'",
  11. "lint": "eslint src/**/*.ts",
  12. "test": "jest",
  13. "licensed-check": "src/misc/licensed-check.sh",
  14. "licensed-generate": "src/misc/licensed-generate.sh"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/actions/checkout.git"
  19. },
  20. "keywords": [
  21. "github",
  22. "actions",
  23. "checkout"
  24. ],
  25. "author": "GitHub",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/actions/checkout/issues"
  29. },
  30. "homepage": "https://github.com/actions/checkout#readme",
  31. "dependencies": {
  32. "@actions/core": "^1.10.0",
  33. "@actions/exec": "^1.0.1",
  34. "@actions/github": "^2.2.0",
  35. "@actions/io": "file:actions-io-1.1.3.tgz",
  36. "@actions/tool-cache": "^1.1.2",
  37. "uuid": "^3.3.3"
  38. },
  39. "devDependencies": {
  40. "@types/jest": "^27.0.2",
  41. "@types/node": "^12.7.12",
  42. "@types/uuid": "^3.4.6",
  43. "@typescript-eslint/parser": "^5.1.0",
  44. "@zeit/ncc": "^0.20.5",
  45. "eslint": "^7.32.0",
  46. "eslint-plugin-github": "^4.3.2",
  47. "eslint-plugin-jest": "^25.2.2",
  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. }