{
	"name": "sort-asc",
	"versions": {
		"0.1.0": {
			"name": "sort-asc",
			"description": "Sort array elements in ascending order.",
			"version": "0.1.0",
			"homepage": "https://github.com/jonschlinkert/sort-asc",
			"author": {
				"name": "Jon Schlinkert",
				"url": "https://github.com/jonschlinkert"
			},
			"repository": {
				"type": "git",
				"url": "git://github.com/jonschlinkert/sort-asc.git"
			},
			"bugs": {
				"url": "https://github.com/jonschlinkert/sort-asc/issues"
			},
			"licenses": [
				{
					"type": "MIT",
					"url": "https://github.com/jonschlinkert/sort-asc/blob/master/LICENSE-MIT"
				}
			],
			"keywords": [
				"array",
				"arr",
				"asc",
				"ascending",
				"function",
				"keys",
				"key",
				"order",
				"ordered",
				"obj",
				"object",
				"sort"
			],
			"main": "index.js",
			"engines": {
				"node": ">=0.10.0"
			},
			"scripts": {
				"test": "mocha -R spec"
			},
			"devDependencies": {
				"mocha": "*",
				"verb": "^0.2.15"
			},
			"_id": "sort-asc@0.1.0",
			"_shasum": "ab799df61fc73ea0956c79c4b531ed1e9e7727e9",
			"_from": ".",
			"_npmVersion": "1.4.9",
			"_npmUser": {
				"name": "jonschlinkert",
				"email": "github@sellside.com"
			},
			"maintainers": [
				{
					"name": "jonschlinkert",
					"email": "github@sellside.com"
				}
			],
			"dist": {
				"shasum": "ab799df61fc73ea0956c79c4b531ed1e9e7727e9",
				"tarball": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.1.0.tgz"
			},
			"directories": {},
			"contributors": []
		},
		"0.2.0": {
			"name": "sort-asc",
			"description": "Sort array elements in ascending order.",
			"version": "0.2.0",
			"homepage": "https://github.com/jonschlinkert/sort-asc",
			"author": {
				"name": "Jon Schlinkert",
				"url": "https://github.com/jonschlinkert"
			},
			"repository": {
				"type": "git",
				"url": "git+https://github.com/jonschlinkert/sort-asc.git"
			},
			"bugs": {
				"url": "https://github.com/jonschlinkert/sort-asc/issues"
			},
			"license": "MIT",
			"main": "index.js",
			"engines": {
				"node": ">=0.10.0"
			},
			"scripts": {
				"test": "mocha"
			},
			"devDependencies": {
				"mocha": "*"
			},
			"keywords": [
				"array",
				"arr",
				"asc",
				"ascend",
				"ascending",
				"element",
				"elements",
				"order",
				"ordered",
				"sort",
				"sorted",
				"sorting"
			],
			"verb": {
				"related": {
					"list": [
						"sort-asc",
						"sort-desc",
						"sort-object"
					]
				}
			},
			"gitHead": "164f1496953566565ae15371d86701bef11d8d76",
			"_id": "sort-asc@0.2.0",
			"_shasum": "00a49e947bc25d510bfde2cbb8dffda9f50eb2fc",
			"_from": ".",
			"_npmVersion": "2.10.1",
			"_nodeVersion": "0.12.4",
			"_npmUser": {
				"name": "jonschlinkert",
				"email": "github@sellside.com"
			},
			"maintainers": [
				{
					"name": "jonschlinkert",
					"email": "github@sellside.com"
				}
			],
			"dist": {
				"shasum": "00a49e947bc25d510bfde2cbb8dffda9f50eb2fc",
				"tarball": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz"
			},
			"directories": {},
			"contributors": []
		}
	},
	"time": {
		"modified": "2015-07-18T00:43:17.190Z",
		"created": "2014-08-15T06:14:41.011Z",
		"0.1.0": "2014-08-15T06:14:41.011Z",
		"0.2.0": "2015-07-18T00:43:17.190Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "0.2.0"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"081b6542d7193e2efb2b7536fd34025f\"",
			"fetched": 1593324390296
		}
	},
	"_distfiles": {
		"sort-asc-0.1.0.tgz": {
			"url": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.1.0.tgz",
			"sha": "ab799df61fc73ea0956c79c4b531ed1e9e7727e9",
			"registry": "npmjs"
		},
		"sort-asc-0.2.0.tgz": {
			"url": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz",
			"sha": "00a49e947bc25d510bfde2cbb8dffda9f50eb2fc",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"sort-asc-0.1.0.tgz": {
			"shasum": "ab799df61fc73ea0956c79c4b531ed1e9e7727e9"
		}
	},
	"_rev": "2-e46e2a4cfc727cd4",
	"_id": "sort-asc",
	"readme": "# sort-asc [![NPM version](https://badge.fury.io/js/sort-asc.svg)](http://badge.fury.io/js/sort-asc)  [![Build Status](https://travis-ci.org/jonschlinkert/sort-asc.svg)](https://travis-ci.org/jonschlinkert/sort-asc)\n\n> Sort array elements in ascending order.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/)\n\n```sh\n$ npm i sort-asc --save\n```\n\n## Usage\n\n```js\nvar ascending = require('sort-asc');\n['d', 'c', 'b', 'a'].sort(ascending);\n//=> ['a', 'b', 'c', 'd']\n```\n\n## Related projects\n\n* [sort-desc](https://github.com/jonschlinkert/sort-desc): Sort array elements in descending order.\n* [sort-object](https://github.com/doowb/sort-object): Sort the keys in an object.\n\n## Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm i -d && npm test\n```\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/sort-asc/issues/new)\n\n## Author\n\n**Jon Schlinkert**\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright © 2015 Jon Schlinkert\nReleased under the MIT license.\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on July 17, 2015._"
}