package.json 902 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "substrate-auto-payout",
  3. "version": "1.0.0",
  4. "description": "Auto payout script for Substrate based blockchains Polkadot, Kusama and Westend",
  5. "main": "autopayout.js",
  6. "scripts": {
  7. "autopayout": "node autopayout.js",
  8. "adjustStake": "node adjustStake.js",
  9. "test": "echo \"Error: no test specified\" && exit 1"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Colm3na/substrate-auto-payout"
  14. },
  15. "keywords": [
  16. "blockchain",
  17. "substrate",
  18. "polkadot",
  19. "kusama",
  20. "westend",
  21. "validator",
  22. "POS"
  23. ],
  24. "author": "mariopino",
  25. "license": "GPL-3.0-only",
  26. "dependencies": {
  27. "@joystream/types": "^0.16.1",
  28. "@polkadot/api": "4.2.1",
  29. "@polkadot/types": "4.2.1",
  30. "@polkadot/util": "^6.0.5",
  31. "@polkadot/ui-keyring": "^0.75.1",
  32. "bignumber.js": "^9.0.1",
  33. "prompts": "^2.4.0",
  34. "yargs": "^16.2.0"
  35. }
  36. }