{
  "_args": [
    [
      {
        "raw": "sum-up@^1.0.1",
        "scope": null,
        "escapedName": "sum-up",
        "name": "sum-up",
        "rawSpec": "^1.0.1",
        "spec": ">=1.0.1 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/inline-source-map-comment"
    ]
  ],
  "_from": "sum-up@>=1.0.1 <2.0.0",
  "_id": "sum-up@1.0.3",
  "_inCache": true,
  "_location": "/sum-up",
  "_nodeVersion": "5.9.0",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/sum-up-1.0.3.tgz_1458736084775_0.2654310546349734"
  },
  "_npmUser": {
    "name": "shinnn",
    "email": "snnskwtnb@gmail.com"
  },
  "_npmVersion": "3.8.2",
  "_phantomChildren": {},
  "_requested": {
    "raw": "sum-up@^1.0.1",
    "scope": null,
    "escapedName": "sum-up",
    "name": "sum-up",
    "rawSpec": "^1.0.1",
    "spec": ">=1.0.1 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/inline-source-map-comment"
  ],
  "_resolved": "https://registry.npmjs.org/sum-up/-/sum-up-1.0.3.tgz",
  "_shasum": "1c661f667057f63bcb7875aa1438bc162525156e",
  "_shrinkwrap": null,
  "_spec": "sum-up@^1.0.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/inline-source-map-comment",
  "author": {
    "name": "Shinnosuke Watanabe",
    "url": "https://github.com/shinnn"
  },
  "bugs": {
    "url": "https://github.com/shinnn/sum-up/issues"
  },
  "dependencies": {
    "chalk": "^1.0.0"
  },
  "description": "Summarize package information",
  "devDependencies": {
    "@shinnn/eslint-config-node-legacy": "^2.0.0",
    "eslint": "^2.4.0",
    "istanbul": "^0.4.2",
    "tape": "^4.5.1"
  },
  "directories": {},
  "dist": {
    "shasum": "1c661f667057f63bcb7875aa1438bc162525156e",
    "tarball": "https://registry.npmjs.org/sum-up/-/sum-up-1.0.3.tgz"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "a69ca55de273f1dc8640befe4f9939bd29c12dce",
  "homepage": "https://github.com/shinnn/sum-up",
  "keywords": [
    "summerize",
    "summary",
    "brief",
    "outline",
    "info",
    "information",
    "description",
    "data",
    "package",
    "color",
    "cli-friendly"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "shinnn",
      "email": "snnskwtnb@gmail.com"
    }
  ],
  "name": "sum-up",
  "optionalDependencies": {},
  "readme": "# sum-up\n\n[![NPM version](https://img.shields.io/npm/v/sum-up.svg)](https://www.npmjs.com/package/sum-up)\n[![Build Status](https://travis-ci.org/shinnn/sum-up.svg?branch=master)](https://travis-ci.org/shinnn/sum-up)\n[![Coverage Status](https://img.shields.io/coveralls/shinnn/sum-up.svg)](https://coveralls.io/r/shinnn/sum-up)\n[![Dependency Status](https://david-dm.org/shinnn/sum-up.svg)](https://david-dm.org/shinnn/sum-up)\n[![devDependency Status](https://david-dm.org/shinnn/sum-up/dev-status.svg)](https://david-dm.org/shinnn/sum-up#info=devDependencies)\n\nSummarize package information\n\n```javascript\nconst sumUp = require('sum-up');\nconsole.log(sumUp(require('./package.json')));\n```\n\n![Screenshot](./screenshot.png \"Screenshot\")\n\nIt helps your CLI tool to display information with `--help` flag.\n\n## Installation\n\n[Use npm.](https://docs.npmjs.com/cli/install)\n\n```\nnpm install sum-up\n```\n\n## API\n\n```javascript\nconst sumUp = require('sum-up');\n```\n\n### sumUp(*options*)\n\n*options*: `Object`  \nReturn: `String`\n\nIt joins the `name`, `version`, `homepage` and `description` of the object (all is optional) into a string colorized with [ANSI escape code](https://github.com/sindresorhus/ansi-styles).\n\n#### options.color\n\nType: `Boolean`  \nDefault: `true` if [the environment supports color](https://github.com/sindresorhus/supports-color), otherwise `false`\n\n`false` omits all ANSI escape code from the string.\n\n```javascript\nlet data = {\n  name: 'cli-name',\n  version: '0.6.11',\n  description: 'My CLI tool.'\n}\n\nsumUp(data); //=> '\\u001b[36mcli-name\\u001b[39m \\u001b[90mv0.6.11\\u001b[39m\\nMy CLI tool.'\n\ndata.color = false;\n\nsumUp(data); //=> 'cli-name v0.6.11\\nMy CLI tool.'\n```\n\n## License\n\nCopyright (c) 2014 - 2016 [Shinnosuke Watanabe](https://github.com/shinnn)\n\nLicensed under [the MIT License](./LICENSE).\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shinnn/sum-up.git"
  },
  "scripts": {
    "coverage": "node --strong_mode node_modules/.bin/istanbul cover test.js -- --color",
    "coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls",
    "pretest": "eslint --config @shinnn/node-legacy index.js test.js",
    "test": "node --strong_mode test.js --color && node test.js --no-color"
  },
  "version": "1.0.3"
}
