package.json 605 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "run-async",
  3. "version": "2.3.0",
  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. "is-promise": "^2.1.0"
  25. },
  26. "devDependencies": {
  27. "mocha": "^3.1.2"
  28. }
  29. }