package.json 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "chan",
  3. "version": "0.6.1",
  4. "description": "A go style channel implementation that works nicely with co",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "./node_modules/mocha/bin/mocha"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "http://github.com/brentburgoyne/chan"
  12. },
  13. "keywords": [
  14. "async",
  15. "go",
  16. "channel",
  17. "co",
  18. "generator"
  19. ],
  20. "author": "Brent Burgoyne",
  21. "contributors": [
  22. {
  23. "name": "Brent Burgoyne"
  24. },
  25. {
  26. "name": "TJ Holowaychuk",
  27. "email": "tj@vision-media.ca"
  28. },
  29. {
  30. "name": "Eugene Ware",
  31. "email": "eugene@noblesamurai.com"
  32. }
  33. ],
  34. "license": "MIT",
  35. "bugs": {
  36. "url": "https://github.com/brentburgoyne/chan/issues"
  37. },
  38. "homepage": "https://github.com/brentburgoyne/chan",
  39. "devDependencies": {
  40. "co": "^3.0.6",
  41. "co-wait": "0.0.0",
  42. "expect.js": "^0.3.1",
  43. "mocha": "^1.20.1",
  44. "should": "^4.0.4",
  45. "sinon": "^1.10.3",
  46. "split": "^0.3.0",
  47. "superagent": "^0.18.0"
  48. }
  49. }