heroku-debug
Version:
debugging plugin for the CLI
79 lines (78 loc) • 2.48 kB
JSON
{
"_args": [
[
{
"raw": "throttled-log@~0.1.0",
"scope": null,
"escapedName": "throttled-log",
"name": "throttled-log",
"rawSpec": "~0.1.0",
"spec": ">=0.1.0 <0.2.0",
"type": "range"
},
"/Users/jdickey/src/github.com/dickeyxxx/heroku-cli-debug/tmp/node_modules/metric-log"
]
],
"_from": "throttled-log@>=0.1.0 <0.2.0",
"_id": "throttled-log@0.1.1",
"_inCache": true,
"_installable": true,
"_location": "/throttled-log",
"_npmUser": {
"name": "camshaft",
"email": "cameron@nujii.com"
},
"_npmVersion": "1.1.71",
"_phantomChildren": {},
"_requested": {
"raw": "throttled-log@~0.1.0",
"scope": null,
"escapedName": "throttled-log",
"name": "throttled-log",
"rawSpec": "~0.1.0",
"spec": ">=0.1.0 <0.2.0",
"type": "range"
},
"_requiredBy": [
"/metric-log"
],
"_resolved": "https://registry.npmjs.org/throttled-log/-/throttled-log-0.1.1.tgz",
"_shasum": "233d0d79bd831f7ce28ee0c8ac277f76af9f95a7",
"_shrinkwrap": null,
"_spec": "throttled-log@~0.1.0",
"_where": "/Users/jdickey/src/github.com/dickeyxxx/heroku-cli-debug/tmp/node_modules/metric-log",
"author": {
"name": "Cameron Bytheway",
"email": "cameron@theflokk.com"
},
"dependencies": {
"throttleit": "0.0.2"
},
"description": "Throttled console.log",
"devDependencies": {
"mocha": "~1.10.0",
"should": "~1.2.2"
},
"directories": {},
"dist": {
"shasum": "233d0d79bd831f7ce28ee0c8ac277f76af9f95a7",
"tarball": "https://registry.npmjs.org/throttled-log/-/throttled-log-0.1.1.tgz"
},
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "camshaft",
"email": "cameron@nujii.com"
}
],
"name": "throttled-log",
"optionalDependencies": {},
"readme": "throttled-log\n=============\n\nThrottled log to STDOUT\n\nIf you're writing a lot of data to STDOUT, throttling the output goes a long way to keeping performance up.\n\nUsage\n-----\n\n```js\nvar log = require(\"throttled-log\")();\n\n// This is much faster\nfor (var i = 1000000 - 1; i >= 0; i--) {\n log(\"this is a test\");\n};\n\n// than this\nfor (var i = 1000000 - 1; i >= 0; i--) {\n console.log(\"this is a test\");\n};\n\n// throttled: 268ms vs unthrottled: 6401ms\n```\n",
"readmeFilename": "README.md",
"repository": "",
"scripts": {
"test": "NODE_ENV=test mocha > /dev/null"
},
"version": "0.1.1"
}