package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "checkout",
  3. "version": "2.0.1",
  4. "description": "checkout action",
  5. "main": "lib/main.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "format": "prettier --write **/*.ts",
  9. "format-check": "prettier --check **/*.ts",
  10. "lint": "eslint src/**/*.ts",
  11. "pack": "ncc build",
  12. "gendocs": "node lib/misc/generate-docs.js",
  13. "test": "jest",
  14. "all": "npm run build && npm run format && npm run lint && npm run pack && npm run gendocs && npm test"
  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.1.3",
  33. "@actions/exec": "^1.0.1",
  34. "@actions/github": "^2.0.0",
  35. "@actions/io": "^1.0.1",
  36. "@actions/tool-cache": "^1.1.2",
  37. "https-proxy-agent": "^4.0.0",
  38. "uuid": "^3.3.3"
  39. },
  40. "devDependencies": {
  41. "@types/jest": "^24.0.23",
  42. "@types/node": "^12.7.12",
  43. "@types/uuid": "^3.4.6",
  44. "@typescript-eslint/parser": "^2.8.0",
  45. "@zeit/ncc": "^0.20.5",
  46. "eslint": "^5.16.0",
  47. "eslint-plugin-github": "^2.0.0",
  48. "eslint-plugin-jest": "^22.21.0",
  49. "jest": "^24.9.0",
  50. "jest-circus": "^24.9.0",
  51. "js-yaml": "^3.13.1",
  52. "prettier": "^1.19.1",
  53. "ts-jest": "^24.2.0",
  54. "typescript": "^3.6.4"
  55. }
  56. }