package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "through2",
  3. "version": "4.0.2",
  4. "description": "A tiny wrapper around Node.js streams.Transform (Streams2/3) to avoid explicit subclassing noise",
  5. "main": "through2.js",
  6. "scripts": {
  7. "test:node": "hundreds mocha test/test.js",
  8. "test:browser": "node -e 'process.exit(process.version.startsWith(\"v8.\") ? 0 : 1)' || polendina --cleanup --runner=mocha test/test.js",
  9. "test": "npm run lint && npm run test:node && npm run test:browser",
  10. "lint": "standard",
  11. "coverage": "c8 --reporter=text --reporter=html mocha test/test.js && npx st -d coverage -p 8888"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/rvagg/through2.git"
  16. },
  17. "keywords": [
  18. "stream",
  19. "streams2",
  20. "through",
  21. "transform"
  22. ],
  23. "author": "Rod Vagg <r@va.gg> (https://github.com/rvagg)",
  24. "license": "MIT",
  25. "dependencies": {
  26. "readable-stream": "3"
  27. },
  28. "devDependencies": {
  29. "bl": "^4.0.2",
  30. "buffer": "^5.6.0",
  31. "chai": "^4.2.0",
  32. "hundreds": "~0.0.7",
  33. "mocha": "^7.2.0",
  34. "polendina": "^1.0.0",
  35. "standard": "^14.3.4",
  36. "stream-spigot": "^3.0.6"
  37. }
  38. }