118 lines
3.9 KiB
JSON
118 lines
3.9 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "fancy-log@^1.1.0",
|
|
"scope": null,
|
|
"escapedName": "fancy-log",
|
|
"name": "fancy-log",
|
|
"rawSpec": "^1.1.0",
|
|
"spec": ">=1.1.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/gulp-util"
|
|
]
|
|
],
|
|
"_from": "fancy-log@>=1.1.0 <2.0.0",
|
|
"_id": "fancy-log@1.3.2",
|
|
"_inCache": true,
|
|
"_location": "/fancy-log",
|
|
"_nodeVersion": "0.10.48",
|
|
"_npmOperationalInternal": {
|
|
"host": "s3://npm-registry-packages",
|
|
"tmp": "tmp/fancy-log-1.3.2.tgz_1513202028048_0.9886517978738993"
|
|
},
|
|
"_npmUser": {
|
|
"name": "phated",
|
|
"email": "blaine.bublitz@gmail.com"
|
|
},
|
|
"_npmVersion": "2.15.1",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "fancy-log@^1.1.0",
|
|
"scope": null,
|
|
"escapedName": "fancy-log",
|
|
"name": "fancy-log",
|
|
"rawSpec": "^1.1.0",
|
|
"spec": ">=1.1.0 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/gulp-util"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz",
|
|
"_shasum": "f41125e3d84f2e7d89a43d06d958c8f78be16be1",
|
|
"_shrinkwrap": null,
|
|
"_spec": "fancy-log@^1.1.0",
|
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/gulp-util",
|
|
"author": {
|
|
"name": "Blaine Bublitz",
|
|
"email": "blaine.bublitz@gmail.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/js-cli/fancy-log/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Aman Mittal",
|
|
"url": "http://amandeepmittal.github.io/"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"ansi-gray": "^0.1.1",
|
|
"color-support": "^1.1.3",
|
|
"time-stamp": "^1.0.0"
|
|
},
|
|
"description": "Log things, prefixed with a timestamp",
|
|
"devDependencies": {
|
|
"@phated/eslint-config-iceddev": "^0.2.1",
|
|
"code": "^1.5.0",
|
|
"eslint": "^1.3.1",
|
|
"eslint-plugin-mocha": "^0.5.1",
|
|
"eslint-plugin-react": "^3.3.1",
|
|
"lab": "^5.16.0"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "f41125e3d84f2e7d89a43d06d958c8f78be16be1",
|
|
"tarball": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.10"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"index.js"
|
|
],
|
|
"gitHead": "29686d6d562423c0c5f7ef3489021e1a47639e81",
|
|
"homepage": "https://github.com/js-cli/fancy-log#readme",
|
|
"keywords": [
|
|
"console.log",
|
|
"log",
|
|
"logger",
|
|
"logging",
|
|
"pretty",
|
|
"timestamp"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "phated",
|
|
"email": "blaine@iceddev.com"
|
|
}
|
|
],
|
|
"name": "fancy-log",
|
|
"optionalDependencies": {},
|
|
"readme": "# fancy-log\n\n[![Travis Build Status](https://img.shields.io/travis/js-cli/fancy-log.svg?branch=master&label=travis&style=flat-square)](https://travis-ci.org/js-cli/fancy-log)\n\nLog things, prefixed with a timestamp\n\n__This module was pulled out of gulp-util for use inside the CLI__\n\n## Usage\n\n```js\nvar log = require('fancy-log');\n\nlog('a message');\n// [16:27:02] a message\n\nlog.error('oh no!');\n// [16:27:02] oh no!\n```\n\n## API\n\n### `log(msg...)`\n\nLogs the message as if you called `console.log` but prefixes the output with the\ncurrent time in HH:MM:ss format.\n\n### `log.error(msg...)`\n\nLogs the message as if you called `console.error` but prefixes the output with the\ncurrent time in HH:MM:ss format.\n\n### `log.warn(msg...)`\n\nLogs the message as if you called `console.warn` but prefixes the output with the\ncurrent time in HH:MM:ss format.\n\n\n### `log.info(msg...)`\n\nLogs the message as if you called `console.info` but prefixes the output with the\ncurrent time in HH:MM:ss format.\n\n### `log.dir(msg...)`\n\nLogs the message as if you called `console.dir` but prefixes the output with the\ncurrent time in HH:MM:ss format.\n\n## License\n\nMIT\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/js-cli/fancy-log.git"
|
|
},
|
|
"scripts": {
|
|
"test": "lab -cvL test.js"
|
|
},
|
|
"version": "1.3.2"
|
|
}
|