package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "./utils/fold.js": "./src/utils/fold.js",
  16. "./utils/fromIterable.js": "./src/utils/fromIterable.js",
  17. "./utils/reduce.js": "./src/utils/reduce.js",
  18. "./utils/reduceStream.js": "./src/utils/reduceStream.js",
  19. "./utils/scan.js": "./src/utils/scan.js",
  20. "./utils/skip.js": "./src/utils/skip.js",
  21. "./utils/skipWhile.js": "./src/utils/skipWhile.js",
  22. "./utils/take.js": "./src/utils/take.js",
  23. "./utils/takeWhile.js": "./src/utils/takeWhile.js",
  24. "./utils/takeWithSkip.js": "./src/utils/takeWithSkip.js"
  25. },
  26. "scripts": {
  27. "debug": "node --inspect-brk tests/tests.js",
  28. "test": "tape6 --flags DO"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/uhop/stream-chain.git"
  33. },
  34. "keywords": [
  35. "stream",
  36. "chain"
  37. ],
  38. "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)",
  39. "license": "BSD-3-Clause",
  40. "bugs": {
  41. "url": "https://github.com/uhop/stream-chain/issues"
  42. },
  43. "homepage": "https://github.com/uhop/stream-chain#readme",
  44. "devDependencies": {
  45. "tape6": "file:../tape6"
  46. },
  47. "files": [
  48. "src/*.js",
  49. "src/utils/*.js"
  50. ],
  51. "tape6": {
  52. "tests": [
  53. "/tests/test_*.mjs"
  54. ]
  55. },
  56. "dependencies": {
  57. "tape-six": "^0.9.1"
  58. }
  59. }