package.json 571 B

123456789101112131415161718192021222324
  1. {
  2. "name": "vasync",
  3. "version": "2.2.1",
  4. "description": "utilities for observable asynchronous control flow",
  5. "main": "./lib/vasync.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/joyent/node-vasync.git"
  9. },
  10. "scripts": {
  11. "test": "./node_modules/.bin/tap --stdout tests/ && ./node_modules/.bin/nodeunit tests/compat.js && ./node_modules/.bin/nodeunit tests/compat_tryEach.js"
  12. },
  13. "devDependencies": {
  14. "tap": "~0.4.8",
  15. "nodeunit": "0.8.7"
  16. },
  17. "dependencies": {
  18. "verror": "1.10.0"
  19. },
  20. "engines": [
  21. "node >=0.6.0"
  22. ],
  23. "license": "MIT"
  24. }