package.json 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "duplexer",
  3. "version": "0.1.1",
  4. "description": "Creates a duplex stream",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Raynos/duplexer.git",
  8. "main": "index",
  9. "homepage": "https://github.com/Raynos/duplexer",
  10. "contributors": [
  11. {
  12. "name": "Jake Verbaten"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Raynos/duplexer/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "devDependencies": {
  20. "tape": "0.3.3",
  21. "through": "~0.1.4"
  22. },
  23. "licenses": [
  24. {
  25. "type": "MIT",
  26. "url": "http://github.com/Raynos/duplexer/raw/master/LICENSE"
  27. }
  28. ],
  29. "scripts": {
  30. "test": "node test"
  31. },
  32. "testling": {
  33. "files": "test/index.js",
  34. "browsers": [
  35. "ie/8..latest",
  36. "firefox/16..latest",
  37. "firefox/nightly",
  38. "chrome/22..latest",
  39. "chrome/canary",
  40. "opera/12..latest",
  41. "opera/next",
  42. "safari/5.1..latest",
  43. "ipad/6.0..latest",
  44. "iphone/6.0..latest"
  45. ]
  46. }
  47. }