package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "proc-log",
  3. "version": "5.0.0",
  4. "files": [
  5. "bin/",
  6. "lib/"
  7. ],
  8. "main": "lib/index.js",
  9. "description": "just emit 'log' events on the process object",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/npm/proc-log.git"
  13. },
  14. "author": "GitHub Inc.",
  15. "license": "ISC",
  16. "scripts": {
  17. "test": "tap",
  18. "snap": "tap",
  19. "posttest": "npm run lint",
  20. "postsnap": "eslint index.js test/*.js --fix",
  21. "lint": "npm run eslint",
  22. "postlint": "template-oss-check",
  23. "lintfix": "npm run eslint -- --fix",
  24. "template-oss-apply": "template-oss-apply --force",
  25. "eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
  26. },
  27. "devDependencies": {
  28. "@npmcli/eslint-config": "^5.0.0",
  29. "@npmcli/template-oss": "4.23.3",
  30. "tap": "^16.0.1"
  31. },
  32. "engines": {
  33. "node": "^18.17.0 || >=20.5.0"
  34. },
  35. "templateOSS": {
  36. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  37. "version": "4.23.3",
  38. "publish": true
  39. },
  40. "tap": {
  41. "nyc-arg": [
  42. "--exclude",
  43. "tap-snapshots/**"
  44. ]
  45. }
  46. }