package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "build-and-install-python",
  3. "private": false,
  4. "description": "Build and Install action",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "tsc --build --verbose",
  8. "format": "prettier --write **/*.ts",
  9. "format-check": "prettier --check **/*.ts",
  10. "lint": "eslint --ext .ts src/",
  11. "package": "ncc build ./lib/index.js --license licenses.txt && node ./.github/scripts/append_license",
  12. "test": "jest",
  13. "test-ci": "jest --reporters='@matteoh2o1999/github-actions-jest-reporter' --ci",
  14. "complete-build": "npm run build && npm run package"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/MatteoH2O1999/build-and-install-python.git"
  19. },
  20. "keywords": [
  21. "actions",
  22. "python",
  23. "build",
  24. "setup"
  25. ],
  26. "author": "Matteo Dell'Acqua",
  27. "license": "AGPL-3.0-or-later",
  28. "dependencies": {
  29. "@actions/artifact": "^1.1.1",
  30. "@actions/cache": "^3.2.1",
  31. "@actions/core": "^1.10.0",
  32. "@actions/exec": "^1.1.1",
  33. "@actions/github": "^5.1.1",
  34. "@actions/glob": "^0.4.0",
  35. "@actions/http-client": "^2.1.0",
  36. "@actions/io": "^1.1.3",
  37. "@actions/tool-cache": "^2.0.1",
  38. "find-process": "^1.4.7",
  39. "semver": "^7.5.2"
  40. },
  41. "devDependencies": {
  42. "@matteoh2o1999/github-actions-jest-reporter": "^2.0.0",
  43. "@types/node": "^20.3.1",
  44. "@typescript-eslint/parser": "^5.59.11",
  45. "@vercel/ncc": "^0.36.1",
  46. "axios": "^1.4.0",
  47. "eslint": "^8.43.0",
  48. "eslint-plugin-github": "^4.8.0",
  49. "eslint-plugin-jest": "^27.2.1",
  50. "jest": "^29.5.0",
  51. "js-yaml": "^4.1.0",
  52. "prettier": "^2.8.8",
  53. "ts-jest": "^29.1.0",
  54. "typescript": "^5.1.3"
  55. }
  56. }