{
  "_args": [
    [
      {
        "raw": "inline-source-map-comment@^1.0.5",
        "scope": null,
        "escapedName": "inline-source-map-comment",
        "name": "inline-source-map-comment",
        "rawSpec": "^1.0.5",
        "spec": ">=1.0.5 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-clean-css"
    ]
  ],
  "_from": "inline-source-map-comment@>=1.0.5 <2.0.0",
  "_id": "inline-source-map-comment@1.0.5",
  "_inCache": true,
  "_location": "/inline-source-map-comment",
  "_nodeVersion": "1.6.2",
  "_npmUser": {
    "name": "shinnn",
    "email": "snnskwtnb@gmail.com"
  },
  "_npmVersion": "2.7.3",
  "_phantomChildren": {},
  "_requested": {
    "raw": "inline-source-map-comment@^1.0.5",
    "scope": null,
    "escapedName": "inline-source-map-comment",
    "name": "inline-source-map-comment",
    "rawSpec": "^1.0.5",
    "spec": ">=1.0.5 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/broccoli-clean-css"
  ],
  "_resolved": "https://registry.npmjs.org/inline-source-map-comment/-/inline-source-map-comment-1.0.5.tgz",
  "_shasum": "50a8a44c2a790dfac441b5c94eccd5462635faf6",
  "_shrinkwrap": null,
  "_spec": "inline-source-map-comment@^1.0.5",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/broccoli-clean-css",
  "author": {
    "name": "Shinnosuke Watanabe",
    "url": "https://github.com/shinnn"
  },
  "bin": {
    "inline-source-map-comment": "cli.js"
  },
  "browser": "inline-source-map-comment-cjs.js",
  "bugs": {
    "url": "https://github.com/shinnn/inline-source-map-comment/issues"
  },
  "dependencies": {
    "chalk": "^1.0.0",
    "get-stdin": "^4.0.1",
    "minimist": "^1.1.1",
    "sum-up": "^1.0.1",
    "xtend": "^4.0.0"
  },
  "description": "Create an inline source map comment from a source map",
  "devDependencies": {
    "eslint": "^0.18.0",
    "istanbul": "^0.3.13",
    "istanbul-coveralls": "^1.0.2",
    "jscs": "^1.12.0",
    "run-browser": "^2.0.2",
    "tap-spec": "^2.2.2",
    "tape": "^3.5.0"
  },
  "directories": {},
  "dist": {
    "shasum": "50a8a44c2a790dfac441b5c94eccd5462635faf6",
    "tarball": "https://registry.npmjs.org/inline-source-map-comment/-/inline-source-map-comment-1.0.5.tgz"
  },
  "files": [
    "cli.js",
    "inline-source-map-comment-cjs.js",
    "inline-source-map-comment-node.js"
  ],
  "gitHead": "971b5b8a06ef52584736130aab22ef87154c984b",
  "homepage": "https://github.com/shinnn/inline-source-map-comment#readme",
  "jscsConfig": {
    "preset": "google",
    "maximumLineLength": null,
    "validateLineBreaks": "LF"
  },
  "keywords": [
    "inline",
    "sourcemap",
    "source",
    "map",
    "comment",
    "js",
    "css",
    "cli",
    "browser",
    "client-side"
  ],
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/shinnn/inline-source-map-comment/blob/master/LICENSE"
    }
  ],
  "main": "inline-source-map-comment-node.js",
  "maintainers": [
    {
      "name": "shinnn",
      "email": "snnskwtnb@gmail.com"
    }
  ],
  "name": "inline-source-map-comment",
  "optionalDependencies": {},
  "readme": "# inline-source-map-comment\n\n[![NPM version](https://img.shields.io/npm/v/inline-source-map-comment.svg)](https://www.npmjs.com/package/inline-source-map-comment)\n[![Bower version](https://img.shields.io/bower/v/inline-source-map-comment.svg)](https://github.com/shinnn/inline-source-map-comment/releases)\n[![Build Status](https://travis-ci.org/shinnn/inline-source-map-comment.svg?branch=master)](https://travis-ci.org/shinnn/inline-source-map-comment)\n[![Build status](https://ci.appveyor.com/api/projects/status/57fmdhy41qainu8g?svg=true)](https://ci.appveyor.com/project/ShinnosukeWatanabe/inline-source-map-comment)\n[![Coverage Status](https://img.shields.io/coveralls/shinnn/inline-source-map-comment.svg?label=cov)](https://coveralls.io/r/shinnn/inline-source-map-comment)\n[![Dependency Status](https://img.shields.io/david/shinnn/inline-source-map-comment.svg?label=deps)](https://david-dm.org/shinnn/inline-source-map-comment)\n[![devDependency Status](https://img.shields.io/david/shinnn/inline-source-map-comment.svg?label=devDeps)](https://david-dm.org/shinnn/inline-source-map-comment#info=devDependencies)\n\nCreate an inline source map comment from a source map object or string\n\n```javascript\nvar inlineSourceMapComment = require('inline-source-map-comment');\n\nvar fixture = {\n  version:3,\n  file: 'output.js.map',\n  sources: ['input.js'],\n  names: [],\n  mappings: 'AAAA'\n};\n\ninlineSourceMapComment(fixture);\n//=> \"//# sourceMappingURL=data:application/json;base64,eyJ2ZXJza ...\"\n```\n\n## Installation\n\n### Package managers\n\n#### [npm](https://www.npmjs.com/)\n\n```sh\nnpm install inline-source-map-comment\n```\n\n#### [bower](http://bower.io/)\n\n```sh\nbower install inline-source-map-comment\n```\n\n#### [Duo](http://duojs.org/)\n\n```javascript\nvar inlineSourceMapComment = require('shinnn/inline-source-map-comment');\n```\n\n### Standalone\n\n[Download the script file directly.](https://raw.githubusercontent.com/shinnn/inline-source-map-comment/master/inline-source-map-comment.js)\n\n## API\n\n### inlineSourceMapComment(*sourceMap* [, *options*])\n\n*sourceMap*: `String` or `Object`  \n*options*: `Object`  \nReturn: `String`\n\nIt returns a line comment of [base64](https://wikipedia.org/wiki/Base64)-encoded [source map](https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k).\n\nArgument can be an object of source map or a JSON string.\n\n```javascript\nvar map = '{\"version\":3,\"file\":\"a.js.map\",\"sources\":[\"b.js\"],\"names\":[],\"mappings\":\"AAAA\"}';\n\ninlineSourceMapComment(map);\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uI ... \"\n\ninlineSourceMapComment(JSON.parse(map));\n//=> (Same as `inlineSourceMapComment.js(map)`)\n```\n\nIt automatically removes `sourcesContent` property from result. Use [`sourcesContent` option](#optionssourcescontent) if you want to preserve `sourcesContent` property.\n\n```javascript\nvar map = '{\"version\":3,\"file\":\"foo.js.map\",\"sources\":[\"bar.js\"], ...';\nvar one = inlineSourceMapComment(map);\n\nmap.sourcesContent = 'foo';\nvar another inlineSourceMapComment(map);\n\none === another; //=> true\n```\n\n#### options.block\n\nType: `Boolean`  \nDefault: `false`\n\nReturns a block comment instead of a line comment. It can be used for creating CSS source maps.\n\n```javascript\nvar map = '{\"version\":3,\"file\":\"foo.css.map\",\"sources\":[\"bar.js\"], ...';\n\ninlineSourceMapComment(map, {block: true});\n//=> \"/* sourceMappingURL=data:application/json;base64,eyJ2ZXJ ... */\"\n```\n\n#### options.sourcesContent\n\nType: `Boolean`  \nDefault: `false`\n\nPreserves `sourcesConteThe prefix string of basent` property.\n\n### inlineSourceMapComment.prefix\n\nType: `String`\n\nA common part of a Base64-encoded source map comment.\n\n```javascript\ninlineSourceMapComment.prefix;\n//=> \"# sourceMappingURL=data:application/json;base64,\"\n```\n\n## CLI\n\nYou can use this module as a CLI tool by installing it [globally](https://docs.npmjs.com/files/folders#global-installation).\n\n```sh\nnpm install -g inline-source-map-comment\n```\n\n### Usage\n\n```sh\nUsage1: inline-source-map-comment <source map string>\nUsage2: inline-source-map-comment --in <source map file>\nUsage3: cat <source map file> | inline-source-map-comment\n\nOptions:\n--block, --css,    -b, -c  Print a block comment instead of line comment\n--sources-content, -s      Preserve sourcesContent property\n--in, --input,     -i      Use a JSON file as a source\n--help,            -h      Print usage information\n--version,         -v      Print version\n```\n\n## License\n\nCopyright (c) 2014 - 2015 [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/inline-source-map-comment.git"
  },
  "scripts": {
    "coverage": "istanbul cover test-api/test-node.js",
    "coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls",
    "pretest": "jscs *.js test-*/*.js && eslint *.js test-*/*.js",
    "test": "${npm_package_scripts_test_node} | tap-spec && ${npm_package_scripts_test_browser} | tap-spec",
    "test-browser": "run-browser test-api/test-browser{,-cjs}.js --phantom",
    "test-node": "tape test-api/test-node.js test-cli/test-cli.js"
  },
  "version": "1.0.5"
}
