package.json 613 B

1234567891011121314151617181920
  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.3",
  5. "license": "MIT",
  6. "keywords": [
  7. "async", "forEach", "each", "map",
  8. "asynchronous",
  9. "iteration", "iterate",
  10. "loop", "parallel",
  11. "concurrent", "array",
  12. "flow", "control flow"
  13. ],
  14. "files": ["index.js"],
  15. "homepage": "https://github.com/paulmillr/async-each/",
  16. "author": "Paul Miller (https://paulmillr.com/)",
  17. "repository": "git://github.com/paulmillr/async-each.git",
  18. "main": "index.js",
  19. "dependencies": {}
  20. }