{
  "_args": [
    [
      "strip-json-comments@https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
      "/Users/gajus/Documents/dev/canonical-code-style/canonical"
    ]
  ],
  "_from": "strip-json-comments@>=1.0.1 <1.1.0",
  "_id": "strip-json-comments@1.0.4",
  "_inCache": true,
  "_location": "/strip-json-comments",
  "_phantomChildren": {},
  "_requested": {
    "name": "strip-json-comments",
    "raw": "strip-json-comments@https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
    "rawSpec": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/eslint",
    "/rc"
  ],
  "_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
  "_shasum": "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91",
  "_shrinkwrap": null,
  "_spec": "strip-json-comments@https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz",
  "_where": "/Users/gajus/Documents/dev/canonical-code-style/canonical",
  "author": {
    "email": "sindresorhus@gmail.com",
    "name": "Sindre Sorhus",
    "url": "sindresorhus.com"
  },
  "bin": {
    "strip-json-comments": "cli.js"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/strip-json-comments/issues"
  },
  "dependencies": {},
  "description": "Strip comments from JSON. Lets you use comments in your JSON files!",
  "devDependencies": {
    "mocha": "*"
  },
  "engines": {
    "node": ">=0.8.0"
  },
  "files": [
    "cli.js",
    "strip-json-comments.js"
  ],
  "homepage": "https://github.com/sindresorhus/strip-json-comments#readme",
  "keywords": [
    "bin",
    "cli",
    "comments",
    "conf",
    "config",
    "configuration",
    "delete",
    "env",
    "environment",
    "json",
    "multiline",
    "parse",
    "remove",
    "settings",
    "strip",
    "trim",
    "util"
  ],
  "license": "MIT",
  "main": "strip-json-comments",
  "name": "strip-json-comments",
  "optionalDependencies": {},
  "readme": "# strip-json-comments [![Build Status](https://travis-ci.org/sindresorhus/strip-json-comments.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-json-comments)\n\n> Strip comments from JSON. Lets you use comments in your JSON files!\n\nThis is now possible:\n\n```js\n{\n\t// rainbows\n\t\"unicorn\": /* ❤ */ \"cake\"\n}\n```\n\nIt will remove single-line comments `//` and multi-line comments `/**/`.\n\nAlso available as a [gulp](https://github.com/sindresorhus/gulp-strip-json-comments)/[grunt](https://github.com/sindresorhus/grunt-strip-json-comments)/[broccoli](https://github.com/sindresorhus/broccoli-strip-json-comments) plugin.\n\n-\n\n*There's also [`json-comments`](https://npmjs.org/package/json-comments), but it's only for Node.js, inefficient, bloated as it also minifies, and comes with a `require` hook, which is :(*\n\n\n## Install\n\n```sh\n$ npm install --save strip-json-comments\n```\n\n```sh\n$ bower install --save strip-json-comments\n```\n\n```sh\n$ component install sindresorhus/strip-json-comments\n```\n\n\n## Usage\n\n```js\nvar json = '{/*rainbows*/\"unicorn\":\"cake\"}';\nJSON.parse(stripJsonComments(json));\n//=> {unicorn: 'cake'}\n```\n\n\n## API\n\n### stripJsonComments(input)\n\n#### input\n\nType: `string`\n\nAccepts a string with JSON and returns a string without comments.\n\n\n## CLI\n\n```sh\n$ npm install --global strip-json-comments\n```\n\n```sh\n$ strip-json-comments --help\n\nstrip-json-comments input-file > output-file\n# or\nstrip-json-comments < input-file > output-file\n```\n\n\n## Related\n\n- [`strip-css-comments`](https://github.com/sindresorhus/strip-css-comments)\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/strip-json-comments.git"
  },
  "scripts": {
    "test": "mocha --ui tdd"
  },
  "version": "1.0.4"
}
