package.json 808 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "minipass",
  3. "version": "3.1.6",
  4. "description": "minimal implementation of a PassThrough stream",
  5. "main": "index.js",
  6. "dependencies": {
  7. "yallist": "^4.0.0"
  8. },
  9. "devDependencies": {
  10. "end-of-stream": "^1.4.0",
  11. "tap": "^15.0.9",
  12. "through2": "^2.0.3"
  13. },
  14. "scripts": {
  15. "test": "tap",
  16. "preversion": "npm test",
  17. "postversion": "npm publish --tag=next",
  18. "postpublish": "git push origin --follow-tags"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/isaacs/minipass.git"
  23. },
  24. "keywords": [
  25. "passthrough",
  26. "stream"
  27. ],
  28. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  29. "license": "ISC",
  30. "files": [
  31. "index.js"
  32. ],
  33. "tap": {
  34. "check-coverage": true
  35. },
  36. "engines": {
  37. "node": ">=8"
  38. }
  39. }