package.json 860 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "continuation-local-storage",
  3. "version": "3.2.1",
  4. "description": "userland implementation of https://github.com/joyent/node/issues/5243",
  5. "main": "context.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "tap test/*.tap.js"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/othiym23/node-continuation-local-storage.git"
  15. },
  16. "keywords": [
  17. "threading",
  18. "shared",
  19. "context",
  20. "domains",
  21. "tracing",
  22. "logging"
  23. ],
  24. "author": "Forrest L Norvell <ogd@aoaioxxysz.net>",
  25. "contributors": [
  26. "Tim Caswell <tim@creationix.com>",
  27. "Forrest L Norvell <ogd@aoaioxxysz.net>"
  28. ],
  29. "license": "BSD-2-Clause",
  30. "devDependencies": {
  31. "semver": "^5.4.1",
  32. "tap": "^10.3.1"
  33. },
  34. "dependencies": {
  35. "async-listener": "^0.6.0",
  36. "emitter-listener": "^1.1.1"
  37. }
  38. }