{
	"name": "indexes-of",
	"versions": {
		"1.0.0": {
			"name": "indexes-of",
			"description": "line String/Array#indexOf but return all the indexes in an array",
			"version": "1.0.0",
			"homepage": "https://github.com/dominictarr/indexes-of",
			"repository": {
				"type": "git",
				"url": "git://github.com/dominictarr/indexes-of.git"
			},
			"scripts": {
				"test": "node test.js"
			},
			"author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
			"license": "MIT",
			"dist": {
				"shasum": "d2946aef19402ae43aab25ba8ab8c44118a31c5d",
				"tarball": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.0.tgz"
			},
			"_id": "indexes-of@1.0.0",
			"readmeFilename": "README.md",
			"maintainers": [
				{
					"name": "dominictarr",
					"email": "dominic.tarr@gmail.com"
				}
			],
			"directories": {},
			"contributors": []
		},
		"1.0.1": {
			"name": "indexes-of",
			"description": "line String/Array#indexOf but return all the indexes in an array",
			"version": "1.0.1",
			"homepage": "https://github.com/dominictarr/indexes-of",
			"repository": {
				"type": "git",
				"url": "git://github.com/dominictarr/indexes-of.git"
			},
			"scripts": {
				"test": "node test.js"
			},
			"author": {
				"name": "Dominic Tarr",
				"email": "dominic.tarr@gmail.com",
				"url": "dominictarr.com"
			},
			"license": "MIT",
			"devDependencies": {
				"tape": "~2.1.0"
			},
			"readmeFilename": "README.md",
			"bugs": {
				"url": "https://github.com/dominictarr/indexes-of/issues"
			},
			"_id": "indexes-of@1.0.1",
			"dist": {
				"shasum": "f30f716c8e2bd346c7b67d3df3915566a7c05607",
				"tarball": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz"
			},
			"_from": ".",
			"_npmVersion": "1.3.11",
			"_npmUser": {
				"name": "dominictarr",
				"email": "dominic.tarr@gmail.com"
			},
			"maintainers": [
				{
					"name": "dominictarr",
					"email": "dominic.tarr@gmail.com"
				}
			],
			"directories": {},
			"contributors": []
		}
	},
	"time": {
		"modified": "2013-11-17T02:25:11.536Z",
		"created": "2013-11-16T13:46:09.224Z",
		"1.0.0": "2013-11-16T13:46:17.239Z",
		"1.0.1": "2013-11-17T02:25:11.536Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "1.0.1"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"37c444e3c1b586c93f59daed2adcc1a2\"",
			"fetched": 1593324455058
		}
	},
	"_distfiles": {
		"indexes-of-1.0.0.tgz": {
			"url": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.0.tgz",
			"sha": "d2946aef19402ae43aab25ba8ab8c44118a31c5d",
			"registry": "npmjs"
		},
		"indexes-of-1.0.1.tgz": {
			"url": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
			"sha": "f30f716c8e2bd346c7b67d3df3915566a7c05607",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"indexes-of-1.0.1.tgz": {
			"shasum": "f30f716c8e2bd346c7b67d3df3915566a7c05607"
		}
	},
	"_rev": "2-f56fbf19b2bba71e",
	"_id": "indexes-of",
	"readme": "# npmd\n\ndistributed npm client.\n\n## synposis\n\nAn alternative npm client, based around a local replication of the npm metadata.\n(package.json & readmes are replicated for every package, but only tarballs that \nyou have installed are replicated)\n\nreplicating data locally makes the client much smarter, \nand enables all manner of Mad Science.\n\n## sync\n\nTo begin, replicate the registry metadata. When this gets near 100%\nyou can use the other commands.\n\n```\nnpm install npmd -g\nnpmd --sync\n```\n\nYou should leave the `npmd` service running in the background,\nthis will make running other `npmd` commands much faster.\n\nnpmd will pull down npm metadata, and store it in a leveldb.\nthis will be less than 200mb, including a full text index.\n\n## install\n\ninstall a module. if the module's dependencies are in the cache,\nthen `npmd` will install without making a single network round trip!\n\n```\nnpmd install browserify --greedy\n```\n\n`--greedy` is optional, if enabled, the dependency tree is flattened as much as possible.\nso you have less duplication.\n\n## publish\n\npublish a module locally. In a package directory, just do:\n\n```\nnpmd publish\n```\n\nand your package version will be stashed into a queue for local use. You can\n`npmd install yourpkg` locally even if `yourpkg` isn't on the public npm yet.\nYou can even have multiple versions of your package queued up locally.\n\nTo inspect your local package queue, do:\n\n```\nnpmd queue\n```\n\nYou can remove a package from your queue with:\n\n```\nnpmd queue rm pkgname@version\n```\n\nTo sync your local package queue with the public npm, you can run:\n\n```\nnpmd queue sync\n```\n\n## resolve\n\nresolve all module versions required to install a given module.\nwill write json to stdout in the same format as npm-shrinkwrap. \n\n```\nnpmd resolve request\n```\n\n## License\n\nMIT"
}