package.json 811 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "npmlog",
  4. "description": "logger for npm",
  5. "version": "5.0.1",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/npmlog.git"
  9. },
  10. "main": "log.js",
  11. "files": [
  12. "log.js"
  13. ],
  14. "scripts": {
  15. "test": "tap test/*.js --branches=95",
  16. "npmclilint": "npmcli-lint",
  17. "lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"",
  18. "lintfix": "npm run lint -- --fix",
  19. "posttest": "npm run lint --",
  20. "postsnap": "npm run lintfix --"
  21. },
  22. "dependencies": {
  23. "are-we-there-yet": "^2.0.0",
  24. "console-control-strings": "^1.1.0",
  25. "gauge": "^3.0.0",
  26. "set-blocking": "^2.0.0"
  27. },
  28. "devDependencies": {
  29. "@npmcli/lint": "^1.0.1",
  30. "tap": "^15.0.9"
  31. },
  32. "license": "ISC"
  33. }