package.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "pause-stream@0.0.11",
  6. "scope": null,
  7. "escapedName": "pause-stream",
  8. "name": "pause-stream",
  9. "rawSpec": "0.0.11",
  10. "spec": "0.0.11",
  11. "type": "version"
  12. },
  13. "/home/king/Desktop/FINAL/AhMyth/app/node_modules/event-stream"
  14. ]
  15. ],
  16. "_from": "pause-stream@0.0.11",
  17. "_id": "pause-stream@0.0.11",
  18. "_inCache": true,
  19. "_installable": true,
  20. "_location": "/pause-stream",
  21. "_npmUser": {
  22. "name": "dominictarr",
  23. "email": "dominic.tarr@gmail.com"
  24. },
  25. "_npmVersion": "1.3.6",
  26. "_phantomChildren": {},
  27. "_requested": {
  28. "raw": "pause-stream@0.0.11",
  29. "scope": null,
  30. "escapedName": "pause-stream",
  31. "name": "pause-stream",
  32. "rawSpec": "0.0.11",
  33. "spec": "0.0.11",
  34. "type": "version"
  35. },
  36. "_requiredBy": [
  37. "/event-stream"
  38. ],
  39. "_resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz",
  40. "_shasum": "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445",
  41. "_shrinkwrap": null,
  42. "_spec": "pause-stream@0.0.11",
  43. "_where": "/home/king/Desktop/FINAL/AhMyth/app/node_modules/event-stream",
  44. "author": {
  45. "name": "Dominic Tarr",
  46. "email": "dominic.tarr@gmail.com",
  47. "url": "dominictarr.com"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/dominictarr/pause-stream/issues"
  51. },
  52. "dependencies": {
  53. "through": "~2.3"
  54. },
  55. "description": "a ThroughStream that strictly buffers all readable events when paused.",
  56. "devDependencies": {
  57. "stream-spec": "~0.2.0",
  58. "stream-tester": "0.0.2"
  59. },
  60. "directories": {
  61. "test": "test"
  62. },
  63. "dist": {
  64. "shasum": "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445",
  65. "tarball": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"
  66. },
  67. "homepage": "https://github.com/dominictarr/pause-stream#readme",
  68. "keywords": [
  69. "stream",
  70. "pipe",
  71. "pause",
  72. "drain",
  73. "buffer"
  74. ],
  75. "license": [
  76. "MIT",
  77. "Apache2"
  78. ],
  79. "main": "index.js",
  80. "maintainers": [
  81. {
  82. "name": "dominictarr",
  83. "email": "dominic.tarr@gmail.com"
  84. }
  85. ],
  86. "name": "pause-stream",
  87. "optionalDependencies": {},
  88. "readme": "# PauseStream\n\nThis is a `Stream` that will strictly buffer when paused.\nConnect it to anything you need buffered.\n\n``` js\n var ps = require('pause-stream')();\n\n badlyBehavedStream.pipe(ps.pause())\n\n aLittleLater(function (err, data) {\n ps.pipe(createAnotherStream(data))\n ps.resume()\n })\n```\n\n`PauseStream` will buffer whenever paused.\nit will buffer when yau have called `pause` manually.\nbut also when it's downstream `dest.write()===false`.\nit will attempt to drain the buffer when you call resume\nor the downstream emits `'drain'`\n\n`PauseStream` is tested using [stream-spec](https://github.com/dominictarr/stream-spec)\nand [stream-tester](https://github.com/dominictarr/stream-tester)\n\nThis is now the default case of \n[through](https://github.com/dominictarr/through)\n\nhttps://github.com/dominictarr/pause-stream/commit/4a6fe3dc2c11091b1efbfde912e0473719ed9cc0\n",
  89. "readmeFilename": "readme.markdown",
  90. "repository": {
  91. "type": "git",
  92. "url": "git://github.com/dominictarr/pause-stream.git"
  93. },
  94. "scripts": {
  95. "test": "node test/index.js && node test/pause-end.js"
  96. },
  97. "version": "0.0.11"
  98. }