package.json 788 B

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