package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "duplexer@~0.1.1",
  6. "scope": null,
  7. "escapedName": "duplexer",
  8. "name": "duplexer",
  9. "rawSpec": "~0.1.1",
  10. "spec": ">=0.1.1 <0.2.0",
  11. "type": "range"
  12. },
  13. "/home/king/Desktop/FINAL/AhMyth/app/node_modules/event-stream"
  14. ]
  15. ],
  16. "_from": "duplexer@>=0.1.1 <0.2.0",
  17. "_id": "duplexer@0.1.1",
  18. "_inCache": true,
  19. "_installable": true,
  20. "_location": "/duplexer",
  21. "_npmUser": {
  22. "name": "raynos",
  23. "email": "raynos2@gmail.com"
  24. },
  25. "_npmVersion": "1.2.18",
  26. "_phantomChildren": {},
  27. "_requested": {
  28. "raw": "duplexer@~0.1.1",
  29. "scope": null,
  30. "escapedName": "duplexer",
  31. "name": "duplexer",
  32. "rawSpec": "~0.1.1",
  33. "spec": ">=0.1.1 <0.2.0",
  34. "type": "range"
  35. },
  36. "_requiredBy": [
  37. "/event-stream",
  38. "/stream-combiner"
  39. ],
  40. "_resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
  41. "_shasum": "ace6ff808c1ce66b57d1ebf97977acb02334cfc1",
  42. "_shrinkwrap": null,
  43. "_spec": "duplexer@~0.1.1",
  44. "_where": "/home/king/Desktop/FINAL/AhMyth/app/node_modules/event-stream",
  45. "author": {
  46. "name": "Raynos",
  47. "email": "raynos2@gmail.com"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/Raynos/duplexer/issues",
  51. "email": "raynos2@gmail.com"
  52. },
  53. "contributors": [
  54. {
  55. "name": "Jake Verbaten"
  56. }
  57. ],
  58. "dependencies": {},
  59. "description": "Creates a duplex stream",
  60. "devDependencies": {
  61. "tape": "0.3.3",
  62. "through": "~0.1.4"
  63. },
  64. "directories": {},
  65. "dist": {
  66. "shasum": "ace6ff808c1ce66b57d1ebf97977acb02334cfc1",
  67. "tarball": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"
  68. },
  69. "homepage": "https://github.com/Raynos/duplexer",
  70. "keywords": [],
  71. "licenses": [
  72. {
  73. "type": "MIT",
  74. "url": "http://github.com/Raynos/duplexer/raw/master/LICENSE"
  75. }
  76. ],
  77. "main": "index",
  78. "maintainers": [
  79. {
  80. "name": "raynos",
  81. "email": "raynos2@gmail.com"
  82. },
  83. {
  84. "name": "dominictarr",
  85. "email": "dominic.tarr@gmail.com"
  86. }
  87. ],
  88. "name": "duplexer",
  89. "optionalDependencies": {},
  90. "readme": "# duplexer\n\n[![build status][1]][2] [![dependency status][3]][4]\n\n[![browser support][5]][6]\n\nCreates a duplex stream\n\nTaken from [event-stream][7]\n\n## duplex (writeStream, readStream)\n\nTakes a writable stream and a readable stream and makes them appear as a readable writable stream.\n\nIt is assumed that the two streams are connected to each other in some way.\n\n## Example\n\n```js\nvar grep = cp.exec('grep Stream')\n\nduplex(grep.stdin, grep.stdout)\n```\n\n## Installation\n\n`npm install duplexer`\n\n## Tests\n\n`npm test`\n\n## Contributors\n\n - Dominictarr\n - Raynos\n - samccone\n\n## MIT Licenced\n\n [1]: https://secure.travis-ci.org/Raynos/duplexer.png\n [2]: https://travis-ci.org/Raynos/duplexer\n [3]: https://david-dm.org/Raynos/duplexer.png\n [4]: https://david-dm.org/Raynos/duplexer\n [5]: https://ci.testling.com/Raynos/duplexer.png\n [6]: https://ci.testling.com/Raynos/duplexer\n [7]: https://github.com/dominictarr/event-stream#duplex-writestream-readstream\n",
  91. "readmeFilename": "README.md",
  92. "repository": {
  93. "type": "git",
  94. "url": "git://github.com/Raynos/duplexer.git"
  95. },
  96. "scripts": {
  97. "test": "node test"
  98. },
  99. "testling": {
  100. "files": "test/index.js",
  101. "browsers": [
  102. "ie/8..latest",
  103. "firefox/16..latest",
  104. "firefox/nightly",
  105. "chrome/22..latest",
  106. "chrome/canary",
  107. "opera/12..latest",
  108. "opera/next",
  109. "safari/5.1..latest",
  110. "ipad/6.0..latest",
  111. "iphone/6.0..latest"
  112. ]
  113. },
  114. "version": "0.1.1"
  115. }