package.json 752 B

1234567891011121314151617181920212223242526272829303132
  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. "scripts": {
  8. "debug": "node --inspect-brk tests/tests.js",
  9. "test": "node tests/tests.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/uhop/stream-chain.git"
  14. },
  15. "keywords": [
  16. "stream",
  17. "chain"
  18. ],
  19. "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)",
  20. "license": "BSD-3-Clause",
  21. "bugs": {
  22. "url": "https://github.com/uhop/stream-chain/issues"
  23. },
  24. "homepage": "https://github.com/uhop/stream-chain#readme",
  25. "devDependencies": {
  26. "heya-unit": "^0.3.0"
  27. },
  28. "files": [
  29. "/*.js",
  30. "/utils"
  31. ]
  32. }