package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "proc-log",
  3. "version": "3.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": "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": "eslint \"**/*.js\"",
  22. "postlint": "template-oss-check",
  23. "lintfix": "npm run lint -- --fix",
  24. "template-oss-apply": "template-oss-apply --force"
  25. },
  26. "devDependencies": {
  27. "@npmcli/eslint-config": "^3.0.1",
  28. "@npmcli/template-oss": "4.5.1",
  29. "tap": "^16.0.1"
  30. },
  31. "engines": {
  32. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  33. },
  34. "templateOSS": {
  35. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  36. "version": "4.5.1"
  37. },
  38. "tap": {
  39. "nyc-arg": [
  40. "--exclude",
  41. "tap-snapshots/**"
  42. ]
  43. }
  44. }