9418bf63eb41bdc3687a0b22b26567b6751d83016ddbabd4321689d24a3bd1eb95b71d9c60d3b3d12aa291ed7cae7621bf23cf894999259a4472d33121920b 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "split2",
  3. "version": "3.2.2",
  4. "description": "split a Text Stream into a Line Stream, using Stream 3",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "standard --verbose",
  8. "unit": "nyc --lines 100 --branches 100 --functions 100 --check-coverage --reporter=text tape test.js",
  9. "coverage": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/test.js",
  10. "test:report": "npm run lint && npm run unit:report",
  11. "test": "npm run lint && npm run unit",
  12. "legacy": "tape test.js"
  13. },
  14. "pre-commit": [
  15. "test"
  16. ],
  17. "website": "https://github.com/mcollina/split2",
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/mcollina/split2.git"
  21. },
  22. "bugs": {
  23. "url": "http://github.com/mcollina/split2/issues"
  24. },
  25. "author": "Matteo Collina <hello@matteocollina.com>",
  26. "license": "ISC",
  27. "devDependencies": {
  28. "binary-split": "^1.0.3",
  29. "callback-stream": "^1.1.0",
  30. "fastbench": "^1.0.0",
  31. "nyc": "^15.0.1",
  32. "pre-commit": "^1.1.2",
  33. "safe-buffer": "^5.1.1",
  34. "standard": "^14.0.0",
  35. "tape": "^5.0.0"
  36. },
  37. "dependencies": {
  38. "readable-stream": "^3.0.0"
  39. }
  40. }