package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "author": "GitHub Inc.",
  3. "name": "npmlog",
  4. "description": "logger for npm",
  5. "version": "7.0.1",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/npmlog.git"
  9. },
  10. "main": "lib/log.js",
  11. "files": [
  12. "bin/",
  13. "lib/"
  14. ],
  15. "scripts": {
  16. "test": "tap",
  17. "npmclilint": "npmcli-lint",
  18. "lint": "eslint \"**/*.js\"",
  19. "lintfix": "npm run lint -- --fix",
  20. "posttest": "npm run lint",
  21. "postsnap": "npm run lintfix --",
  22. "postlint": "template-oss-check",
  23. "snap": "tap",
  24. "template-oss-apply": "template-oss-apply --force"
  25. },
  26. "dependencies": {
  27. "are-we-there-yet": "^4.0.0",
  28. "console-control-strings": "^1.1.0",
  29. "gauge": "^5.0.0",
  30. "set-blocking": "^2.0.0"
  31. },
  32. "devDependencies": {
  33. "@npmcli/eslint-config": "^4.0.0",
  34. "@npmcli/template-oss": "4.6.1",
  35. "tap": "^16.0.1"
  36. },
  37. "license": "ISC",
  38. "engines": {
  39. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  40. },
  41. "tap": {
  42. "branches": 95,
  43. "nyc-arg": [
  44. "--exclude",
  45. "tap-snapshots/**"
  46. ]
  47. },
  48. "templateOSS": {
  49. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  50. "version": "4.6.1"
  51. }
  52. }