{
	"name": "acorn-object-spread",
	"versions": {
		"1.0.0": {
			"name": "acorn-object-spread",
			"description": "Support object spread in acorn",
			"homepage": "https://github.com/UXtemple/acorn-object-spread",
			"author": {
				"name": "Darío Javier Cravero",
				"email": "dario@uxtemple.com"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/UXtemple/acorn-object-spread.git"
			},
			"license": "MIT",
			"scripts": {
				"test": "node test/run.js"
			},
			"dependencies": {
				"acorn": "^3.1.0"
			},
			"devDependencies": {
				"chai": "^3.0.0",
				"mocha": "^2.2.5"
			},
			"version": "1.0.0",
			"gitHead": "c837b92a38e49680401e412455a0c6e6d50c8ed0",
			"bugs": {
				"url": "https://github.com/UXtemple/acorn-object-spread/issues"
			},
			"_id": "acorn-object-spread@1.0.0",
			"_shasum": "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68",
			"_from": ".",
			"_npmVersion": "3.8.9",
			"_nodeVersion": "6.2.0",
			"_npmUser": {
				"name": "dariocravero",
				"email": "dario@uxtemple.com"
			},
			"dist": {
				"shasum": "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68",
				"tarball": "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz"
			},
			"maintainers": [
				{
					"name": "dariocravero",
					"email": "dario@uxtemple.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-16-east.internal.npmjs.com",
				"tmp": "tmp/acorn-object-spread-1.0.0.tgz_1464800884185_0.8297854186967015"
			},
			"directories": {},
			"contributors": []
		}
	},
	"time": {
		"modified": "2016-06-01T17:08:05.447Z",
		"created": "2016-06-01T17:08:05.447Z",
		"1.0.0": "2016-06-01T17:08:05.447Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "1.0.0"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"979ad00b12e1eab478f500742ca17cd6\"",
			"fetched": 1593324467377
		}
	},
	"_distfiles": {
		"acorn-object-spread-1.0.0.tgz": {
			"url": "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz",
			"sha": "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"acorn-object-spread-1.0.0.tgz": {
			"shasum": "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68"
		}
	},
	"_rev": "2-078095faa469b4a9",
	"_id": "acorn-object-spread",
	"readme": "# ObjectSpread support in acorn\n\n[![Build Status](https://travis-ci.org/UXtemple/acorn-object-spread.svg?branch=master)](https://travis-ci.org/UXtemple/acorn-object-spread)\n[![NPM version](https://img.shields.io/npm/v/acorn-spread-operator.svg)](https://www.npmjs.org/package/acorn-spread-operator)\n\nThis is plugin for [Acorn](http://marijnhaverbeke.nl/acorn/) - a tiny, fast JavaScript parser, written completely in JavaScript.\n\n## Usage\n\nYou can use this module directly in order to get Acorn instance with plugin installed:\n\n```javascript\nvar acorn = require('acorn-spread-operator');\n```\n\nOr you can use `inject.js` for injecting plugin into your own version of Acorn like this:\n\n```javascript\nvar acorn = require('acorn-spread-operator/inject')(require('./custom-acorn'));\n```\n\nThen, use the `plugins` option whenever you need to support objectSpread while parsing:\n\n```javascript\nvar ast = acorn.parse(code, {\n  plugins: { objectSpread: true }\n});\n```\n## License\n\nThis plugin is issued under the [MIT license](./LICENSE).\n\nWith <3 by UXtemple."
}