package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "action-gh-release",
  3. "version": "0.1.15",
  4. "private": true,
  5. "description": "GitHub Action for creating GitHub Releases",
  6. "main": "lib/main.js",
  7. "scripts": {
  8. "build": "ncc build src/main.ts --minify",
  9. "test": "jest",
  10. "fmt": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
  11. "fmtcheck": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\""
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/softprops/action-gh-release.git"
  16. },
  17. "keywords": [
  18. "actions"
  19. ],
  20. "author": "softprops",
  21. "dependencies": {
  22. "@actions/core": "^1.10.0",
  23. "@actions/github": "^5.1.1",
  24. "@octokit/plugin-retry": "^4.0.3",
  25. "@octokit/plugin-throttling": "^4.3.2",
  26. "glob": "^8.0.3",
  27. "mime": "^3.0.0",
  28. "node-fetch": "^2.6.7"
  29. },
  30. "devDependencies": {
  31. "@types/glob": "^8.0.0",
  32. "@types/jest": "^29.2.3",
  33. "@types/mime": "^3.0.1",
  34. "@types/node": "^18.11.9",
  35. "@types/node-fetch": "^2.5.12",
  36. "@vercel/ncc": "^0.34.0",
  37. "jest": "^29.3.1",
  38. "jest-circus": "^29.3.1",
  39. "prettier": "2.8.0",
  40. "ts-jest": "^29.0.3",
  41. "typescript": "^4.9.3",
  42. "typescript-formatter": "^7.2.2"
  43. }
  44. }