package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "fancy-log",
  3. "version": "1.3.3",
  4. "description": "Log things, prefixed with a timestamp.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Aman Mittal (http://amandeepmittal.github.io/)"
  9. ],
  10. "repository": "gulpjs/fancy-log",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 0.10"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js"
  19. ],
  20. "scripts": {
  21. "lint": "eslint .",
  22. "pretest": "npm run lint",
  23. "test": "mocha --async-only",
  24. "cover": "istanbul cover _mocha --report lcovonly",
  25. "coveralls": "npm run cover && istanbul-coveralls"
  26. },
  27. "dependencies": {
  28. "ansi-gray": "^0.1.1",
  29. "color-support": "^1.1.3",
  30. "parse-node-version": "^1.0.0",
  31. "time-stamp": "^1.0.0"
  32. },
  33. "devDependencies": {
  34. "eslint": "^2.13.0",
  35. "eslint-config-gulp": "^3.0.1",
  36. "expect": "^1.20.2",
  37. "istanbul": "^0.4.3",
  38. "istanbul-coveralls": "^1.0.3",
  39. "mocha": "^3.5.3"
  40. },
  41. "keywords": [
  42. "console.log",
  43. "log",
  44. "logger",
  45. "logging",
  46. "pretty",
  47. "timestamp"
  48. ]
  49. }