package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "minipass",
  3. "version": "3.3.4",
  4. "description": "minimal implementation of a PassThrough stream",
  5. "main": "index.js",
  6. "dependencies": {
  7. "yallist": "^4.0.0"
  8. },
  9. "devDependencies": {
  10. "@types/node": "^17.0.41",
  11. "end-of-stream": "^1.4.0",
  12. "prettier": "^2.6.2",
  13. "tap": "^16.2.0",
  14. "through2": "^2.0.3",
  15. "ts-node": "^10.8.1",
  16. "typescript": "^4.7.3"
  17. },
  18. "scripts": {
  19. "test": "tap",
  20. "preversion": "npm test",
  21. "postversion": "npm publish --tag=next",
  22. "postpublish": "git push origin --follow-tags"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/isaacs/minipass.git"
  27. },
  28. "keywords": [
  29. "passthrough",
  30. "stream"
  31. ],
  32. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  33. "license": "ISC",
  34. "files": [
  35. "index.d.ts",
  36. "index.js"
  37. ],
  38. "tap": {
  39. "check-coverage": true
  40. },
  41. "engines": {
  42. "node": ">=8"
  43. },
  44. "prettier": {
  45. "semi": false,
  46. "printWidth": 80,
  47. "tabWidth": 2,
  48. "useTabs": false,
  49. "singleQuote": true,
  50. "jsxSingleQuote": false,
  51. "bracketSameLine": true,
  52. "arrowParens": "avoid",
  53. "endOfLine": "lf"
  54. }
  55. }