package.json 819 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "deasync",
  3. "version": "0.1.29",
  4. "description": "Turns async function into sync via JavaScript wrapper of Node event loop",
  5. "main": "index.js",
  6. "author": "Vladimir Kurchatkin <vladimir.kurchatkin@gmail.com>",
  7. "contributors": [
  8. "Fred Wen <wenfred@gmail.com> (https://github.com/abbr)"
  9. ],
  10. "license": "MIT",
  11. "scripts": {
  12. "install": "node ./build.js",
  13. "test": "node spec"
  14. },
  15. "dependencies": {
  16. "bindings": "^1.5.0",
  17. "node-addon-api": "^1.7.1"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/abbr/deasync.git"
  22. },
  23. "homepage": "https://github.com/abbr/deasync",
  24. "keywords": [
  25. "async",
  26. "sync",
  27. "sleep",
  28. "async wrapper"
  29. ],
  30. "engines": {
  31. "node": ">=0.11.0"
  32. },
  33. "devDependencies": {
  34. "require-directory": "^2.1.1"
  35. }
  36. }