package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "mute-stream",
  3. "version": "2.0.0",
  4. "main": "lib/index.js",
  5. "devDependencies": {
  6. "@npmcli/eslint-config": "^5.0.0",
  7. "@npmcli/template-oss": "4.23.3",
  8. "tap": "^16.3.0"
  9. },
  10. "scripts": {
  11. "test": "tap",
  12. "lint": "npm run eslint",
  13. "postlint": "template-oss-check",
  14. "template-oss-apply": "template-oss-apply --force",
  15. "lintfix": "npm run eslint -- --fix",
  16. "snap": "tap",
  17. "posttest": "npm run lint",
  18. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/npm/mute-stream.git"
  23. },
  24. "keywords": [
  25. "mute",
  26. "stream",
  27. "pipe"
  28. ],
  29. "author": "GitHub Inc.",
  30. "license": "ISC",
  31. "description": "Bytes go in, but they don't come out (when muted).",
  32. "files": [
  33. "bin/",
  34. "lib/"
  35. ],
  36. "tap": {
  37. "statements": 70,
  38. "branches": 60,
  39. "functions": 81,
  40. "lines": 70,
  41. "nyc-arg": [
  42. "--exclude",
  43. "tap-snapshots/**"
  44. ]
  45. },
  46. "engines": {
  47. "node": "^18.17.0 || >=20.5.0"
  48. },
  49. "templateOSS": {
  50. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  51. "version": "4.23.3",
  52. "publish": true
  53. }
  54. }