package.json 772 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "split2",
  3. "version": "2.2.0",
  4. "description": "split a Text Stream into a Line Stream, using Stream 3",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "standard && tap -b test.js"
  8. },
  9. "pre-commit": [
  10. "test"
  11. ],
  12. "website": "https://github.com/mcollina/split2",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/mcollina/split2.git"
  16. },
  17. "bugs": {
  18. "url": "http://github.com/mcollina/split2/issues"
  19. },
  20. "author": "Matteo Collina <hello@matteocollina.com>",
  21. "license": "ISC",
  22. "devDependencies": {
  23. "callback-stream": "^1.1.0",
  24. "fastbench": "^1.0.0",
  25. "pre-commit": "^1.1.2",
  26. "safe-buffer": "^5.1.1",
  27. "standard": "^10.0.0",
  28. "tap": "^10.0.0"
  29. },
  30. "dependencies": {
  31. "through2": "^2.0.2"
  32. }
  33. }