package.json 871 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "into-stream",
  3. "version": "3.1.0",
  4. "description": "Convert a buffer/string/array/object/iterable/promise into a stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/into-stream",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "stream",
  23. "buffer",
  24. "string",
  25. "object",
  26. "array",
  27. "iterable",
  28. "promise",
  29. "promises",
  30. "from",
  31. "into",
  32. "to",
  33. "transform",
  34. "convert",
  35. "readable",
  36. "pull",
  37. "gulpfriendly",
  38. "value",
  39. "str"
  40. ],
  41. "dependencies": {
  42. "from2": "^2.1.1",
  43. "p-is-promise": "^1.1.0"
  44. },
  45. "devDependencies": {
  46. "ava": "*",
  47. "get-stream": "^3.0.0",
  48. "xo": "*"
  49. }
  50. }