package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@npmcli/redact",
  3. "version": "3.1.1",
  4. "description": "Redact sensitive npm information from output",
  5. "main": "lib/index.js",
  6. "exports": {
  7. ".": "./lib/index.js",
  8. "./server": "./lib/server.js",
  9. "./package.json": "./package.json"
  10. },
  11. "scripts": {
  12. "test": "tap",
  13. "lint": "npm run eslint",
  14. "postlint": "template-oss-check",
  15. "template-oss-apply": "template-oss-apply --force",
  16. "lintfix": "npm run eslint -- --fix",
  17. "snap": "tap",
  18. "posttest": "npm run lint",
  19. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  20. },
  21. "keywords": [],
  22. "author": "GitHub Inc.",
  23. "license": "ISC",
  24. "files": [
  25. "bin/",
  26. "lib/"
  27. ],
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/npm/redact.git"
  31. },
  32. "templateOSS": {
  33. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  34. "version": "4.23.3",
  35. "publish": true
  36. },
  37. "tap": {
  38. "nyc-arg": [
  39. "--exclude",
  40. "tap-snapshots/**"
  41. ],
  42. "timeout": 120
  43. },
  44. "devDependencies": {
  45. "@npmcli/eslint-config": "^5.0.0",
  46. "@npmcli/template-oss": "4.23.3",
  47. "tap": "^16.3.10"
  48. },
  49. "engines": {
  50. "node": "^18.17.0 || >=20.5.0"
  51. }
  52. }