package.json 797 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "stream-splicer",
  3. "version": "2.0.1",
  4. "description": "streaming pipeline with a mutable configuration",
  5. "main": "index.js",
  6. "dependencies": {
  7. "inherits": "^2.0.1",
  8. "readable-stream": "^2.0.2"
  9. },
  10. "devDependencies": {
  11. "JSONStream": "^1.0.4",
  12. "concat-stream": "^1.4.6",
  13. "split": "^1.0.0",
  14. "tape": "^4.2.0",
  15. "through2": "^2.0.0"
  16. },
  17. "scripts": {
  18. "test": "tape test/*.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/browserify/stream-splicer.git"
  23. },
  24. "homepage": "https://github.com/browserify/stream-splicer",
  25. "keywords": [
  26. "stream",
  27. "mutable",
  28. "pipeline"
  29. ],
  30. "author": {
  31. "name": "James Halliday",
  32. "email": "mail@substack.net",
  33. "url": "http://substack.net"
  34. },
  35. "license": "MIT"
  36. }