package.json 575 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "run-async",
  3. "version": "2.4.1",
  4. "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha -R spec"
  8. },
  9. "engines": {
  10. "node": ">=0.12.0"
  11. },
  12. "repository": "SBoudrias/run-async",
  13. "keywords": [
  14. "flow",
  15. "flow-control",
  16. "async"
  17. ],
  18. "files": [
  19. "index.js"
  20. ],
  21. "author": "Simon Boudrias <admin@simonboudrias.com>",
  22. "license": "MIT",
  23. "dependencies": {},
  24. "devDependencies": {
  25. "mocha": "^7.1.0"
  26. }
  27. }