package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "unstable-commands",
  3. "version": "1.0.0",
  4. "private": true,
  5. "description": "An action to retry commands if weird things happen.",
  6. "main": "lib/main.js",
  7. "scripts": {
  8. "build": "tsc",
  9. "format": "prettier --write '**/*.ts'",
  10. "format-check": "prettier --check '**/*.ts'",
  11. "lint": "eslint --fix src/**/*.ts",
  12. "lint-check": "eslint --fix-dry-run src/**/*.ts",
  13. "package": "ncc build --source-map --license licenses.txt",
  14. "test": "jest"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/TSRBerry/unstable-commands.git"
  19. },
  20. "keywords": [
  21. "actions",
  22. "node"
  23. ],
  24. "author": "TSRBerry",
  25. "license": "MIT",
  26. "dependencies": {
  27. "@actions/core": "^1.10.0",
  28. "@actions/exec": "^1.1.1",
  29. "@actions/io": "^1.1.3"
  30. },
  31. "devDependencies": {
  32. "@jest/globals": "^29.6.2",
  33. "@types/node": "^18.16.3",
  34. "@typescript-eslint/parser": "^5.59.2",
  35. "@vercel/ncc": "^0.36.1",
  36. "eslint": "^8.39.0",
  37. "eslint-plugin-github": "^4.7.0",
  38. "eslint-plugin-jest": "^27.2.1",
  39. "jest": "^29.5.0",
  40. "js-yaml": "^4.1.0",
  41. "prettier": "^2.8.8",
  42. "ts-jest": "^29.1.0",
  43. "typescript": "^5.0.4"
  44. }
  45. }