package.json 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "into-stream",
  3. "version": "6.0.0",
  4. "description": "Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/into-stream",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "stream",
  25. "buffer",
  26. "string",
  27. "object",
  28. "array",
  29. "iterable",
  30. "async",
  31. "asynciterable",
  32. "promise",
  33. "promises",
  34. "from",
  35. "into",
  36. "to",
  37. "transform",
  38. "convert",
  39. "readable",
  40. "pull",
  41. "gulpfriendly",
  42. "value"
  43. ],
  44. "dependencies": {
  45. "from2": "^2.3.0",
  46. "p-is-promise": "^3.0.0"
  47. },
  48. "devDependencies": {
  49. "ava": "^2.4.0",
  50. "get-stream": "^6.0.0",
  51. "p-event": "^4.2.0",
  52. "p-immediate": "^3.1.0",
  53. "tsd": "^0.13.1",
  54. "xo": "^0.33.0"
  55. }
  56. }