package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "stream-chain",
  3. "version": "3.0.0",
  4. "description": "Chain functions as transform streams.",
  5. "type": "commonjs",
  6. "main": "src/index.js",
  7. "exports": {
  8. ".": "./src/index.js",
  9. "./*.js": "./src/*.js",
  10. "./utils/*": "./src/utils/*.js",
  11. "./asStream.js": "./src/asStream.js",
  12. "./defs.js": "./src/defs.js",
  13. "./fun.js": "./src/fun.js",
  14. "./gen.js": "./src/gen.js",
  15. "./jsonl/parser.js": "./src/jsonl/parser.js",
  16. "./jsonl/stringer.js": "./src/jsonl/stringer.js",
  17. "./utils/batch.js": "./src/utils/batch.js",
  18. "./utils/fixUtf8Stream.js": "./src/utils/fixUtf8Stream.js",
  19. "./utils/fold.js": "./src/utils/fold.js",
  20. "./utils/fromIterable.js": "./src/utils/fromIterable.js",
  21. "./utils/lines.js": "./src/utils/lines.js",
  22. "./utils/reduce.js": "./src/utils/reduce.js",
  23. "./utils/reduceStream.js": "./src/utils/reduceStream.js",
  24. "./utils/scan.js": "./src/utils/scan.js",
  25. "./utils/skip.js": "./src/utils/skip.js",
  26. "./utils/skipWhile.js": "./src/utils/skipWhile.js",
  27. "./utils/take.js": "./src/utils/take.js",
  28. "./utils/takeWhile.js": "./src/utils/takeWhile.js",
  29. "./utils/takeWithSkip.js": "./src/utils/takeWithSkip.js"
  30. },
  31. "scripts": {
  32. "debug": "node --inspect-brk tests/tests.js",
  33. "test": "tape6 --flags DOF"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/uhop/stream-chain.git"
  38. },
  39. "keywords": [
  40. "stream",
  41. "chain"
  42. ],
  43. "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)",
  44. "license": "BSD-3-Clause",
  45. "bugs": {
  46. "url": "https://github.com/uhop/stream-chain/issues"
  47. },
  48. "homepage": "https://github.com/uhop/stream-chain#readme",
  49. "files": [
  50. "src/*.js",
  51. "src/jsonl/*.js",
  52. "src/utils/*.js"
  53. ],
  54. "tape6": {
  55. "tests": [
  56. "/tests/test-*.mjs"
  57. ]
  58. },
  59. "devDependencies": {
  60. "tape-six": "^0.9.1"
  61. }
  62. }