{
  "_args": [
    [
      "gulplog@https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "gulplog@>=1.0.0 <2.0.0",
  "_id": "gulplog@1.0.0",
  "_inCache": true,
  "_location": "/gulplog",
  "_phantomChildren": {},
  "_requested": {
    "name": "gulplog",
    "raw": "gulplog@https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
    "rawSpec": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/gulp-util"
  ],
  "_resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
  "_shasum": "e28c4d45d05ecbbed818363ce8f9c5926229ffe5",
  "_shrinkwrap": null,
  "_spec": "gulplog@https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "email": "blaine@iceddev.com",
    "name": "Blaine Bublitz",
    "url": "http://iceddev.com"
  },
  "bugs": {
    "url": "https://github.com/gulpjs/gulplog/issues"
  },
  "contributors": [],
  "dependencies": {
    "glogg": "^1.0.0"
  },
  "description": "Logger for gulp and gulp plugins",
  "devDependencies": {
    "eslint": "^1.5.1",
    "eslint-config-node-style-guide": "^1.0.1",
    "jscs": "^2.1.1"
  },
  "engines": {
    "node": ">= 0.10"
  },
  "files": [
    "LICENSE",
    "index.js"
  ],
  "homepage": "https://github.com/gulpjs/gulplog#readme",
  "keywords": [
    "gulp",
    "gulp-util",
    "log",
    "logging"
  ],
  "license": "MIT",
  "main": "index.js",
  "name": "gulplog",
  "optionalDependencies": {},
  "readme": "<p align=\"center\">\n  <a href=\"http://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# gulplog\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Gitter chat][gitter-image]][gitter-url]\n\nLogger for gulp and gulp plugins\n\n## Usage\n\n```js\nvar logger = require('gulplog');\n\n// logs strings\nlogger.debug('The MOST verbose!');\nlogger.info('Some important info');\nlogger.warn('All the warnings to you');\nlogger.error('OH NO! SOMETHING HAPPENED!');\n\n// supports util.format!\nlogger.info('%s style!', 'printf');\n\n// log anything\nlogger.debug({ my: 'obj' });\nlogger.info([1, 2, 3]);\n```\n\n## API\n\nLogging (and level of logging) is controlled by [`gulp-cli`][gulp-cli-url]\n\n#### logger.debug(msg)\n\nHighest log level.  Typically used for debugging purposes.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\n#### logger.info(msg)\n\nStandard log level.  Typically used for user information.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\n#### logger.warn(msg)\n\nWarning log level.  Typically used for warnings.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\n#### logger.error(msg)\n\nError log level.  Typically used when things went horribly wrong.\n\nIf the first argument is a string, all arguments are passed to node's\n[`util.format()`][util-format-url] before being emitted.\n\n## License\n\nMIT\n\n[downloads-image]: http://img.shields.io/npm/dm/gulplog.svg\n[npm-url]: https://npmjs.org/package/gulplog\n[npm-image]: http://img.shields.io/npm/v/gulplog.svg\n\n[travis-url]: https://travis-ci.org/gulpjs/gulplog\n[travis-image]: http://img.shields.io/travis/gulpjs/gulplog.svg\n\n[gitter-url]: https://gitter.im/gulpjs/gulp\n[gitter-image]: https://badges.gitter.im/gulpjs/gulp.png\n\n[gulp-cli-url]: https://github.com/gulpjs/gulp-cli\n[util-format-url]: https://nodejs.org/docs/latest/api/util.html#util_util_format_format\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gulpjs/gulplog.git"
  },
  "scripts": {
    "test": "eslint index.js && jscs index.js"
  },
  "version": "1.0.0"
}
