package.json 797 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "async-each",
  3. "description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.",
  4. "version": "1.0.6",
  5. "license": "MIT",
  6. "files": [
  7. "index.js"
  8. ],
  9. "homepage": "https://github.com/paulmillr/async-each/",
  10. "author": "Paul Miller (https://paulmillr.com/)",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/paulmillr/async-each.git"
  14. },
  15. "main": "index.js",
  16. "dependencies": {},
  17. "keywords": [
  18. "async",
  19. "forEach",
  20. "each",
  21. "map",
  22. "asynchronous",
  23. "iteration",
  24. "iterate",
  25. "loop",
  26. "parallel",
  27. "concurrent",
  28. "array",
  29. "flow",
  30. "control flow"
  31. ],
  32. "funding": [
  33. {
  34. "type": "individual",
  35. "url": "https://paulmillr.com/funding/"
  36. }
  37. ]
  38. }