{
	"name": "hsla-regex",
	"versions": {
		"0.0.1": {
			"name": "hsla-regex",
			"description": "Regex for matching HSLA colors.",
			"author": {
				"name": "John Otander"
			},
			"version": "0.0.1",
			"main": "index.js",
			"directories": {
				"test": "test"
			},
			"scripts": {
				"test": "mocha test"
			},
			"repository": {
				"type": "git",
				"url": "https://github.com/regexps/hsla-regex.git"
			},
			"keywords": [],
			"license": "MIT",
			"bugs": {
				"url": "https://github.com/regexps/hsla-regex/issues"
			},
			"homepage": "https://github.com/regexps/hsla-regex",
			"dependencies": {},
			"devDependencies": {
				"mocha": "*"
			},
			"gitHead": "029f397544bbf36427e2750abfe78d1610bc8abc",
			"_id": "hsla-regex@0.0.1",
			"_shasum": "c1c19b018c3bcd5f80f81506ed7bf9806cdbfc32",
			"_from": ".",
			"_npmVersion": "2.1.18",
			"_nodeVersion": "0.10.35",
			"_npmUser": {
				"name": "johno",
				"email": "johnotander@gmail.com"
			},
			"maintainers": [
				{
					"name": "johno",
					"email": "johnotander@gmail.com"
				}
			],
			"dist": {
				"shasum": "c1c19b018c3bcd5f80f81506ed7bf9806cdbfc32",
				"tarball": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-0.0.1.tgz"
			},
			"contributors": []
		},
		"1.0.0": {
			"name": "hsla-regex",
			"description": "Regex for matching HSLA colors.",
			"author": {
				"name": "John Otander"
			},
			"version": "1.0.0",
			"main": "index.js",
			"directories": {
				"test": "test"
			},
			"scripts": {
				"test": "mocha test"
			},
			"repository": {
				"type": "git",
				"url": "https://github.com/regexps/hsla-regex.git"
			},
			"keywords": [
				"hsla",
				"regex",
				"regexp",
				"color",
				"css"
			],
			"license": "MIT",
			"bugs": {
				"url": "https://github.com/regexps/hsla-regex/issues"
			},
			"homepage": "https://github.com/regexps/hsla-regex",
			"dependencies": {},
			"devDependencies": {
				"mocha": "*"
			},
			"gitHead": "302e803060083219028243d66031e4aaf2661907",
			"_id": "hsla-regex@1.0.0",
			"_shasum": "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38",
			"_from": ".",
			"_npmVersion": "2.1.18",
			"_nodeVersion": "0.10.35",
			"_npmUser": {
				"name": "johno",
				"email": "johnotander@gmail.com"
			},
			"maintainers": [
				{
					"name": "johno",
					"email": "johnotander@gmail.com"
				}
			],
			"dist": {
				"shasum": "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38",
				"tarball": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz"
			},
			"contributors": []
		}
	},
	"time": {
		"modified": "2015-01-30T23:48:43.939Z",
		"created": "2015-01-30T23:30:20.747Z",
		"0.0.1": "2015-01-30T23:30:20.747Z",
		"1.0.0": "2015-01-30T23:48:43.939Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "1.0.0"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"2813777584ec817badb153653a6463d9\"",
			"fetched": 1600679322178
		}
	},
	"_distfiles": {
		"hsla-regex-0.0.1.tgz": {
			"url": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-0.0.1.tgz",
			"sha": "c1c19b018c3bcd5f80f81506ed7bf9806cdbfc32",
			"registry": "npmjs"
		},
		"hsla-regex-1.0.0.tgz": {
			"url": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
			"sha": "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"hsla-regex-1.0.0.tgz": {
			"shasum": "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
		}
	},
	"_rev": "2-9ed6d1d094284c0b",
	"_id": "hsla-regex",
	"readme": "# hsla-regex\n\n[![Build Status](https://secure.travis-ci.org/regexps/hsla-regex.png?branch=master)](https://travis-ci.org/regexps/hsla-regex)\n\nRegex for matching HSLA colors.\n\n## Installation\n\n```bash\nnpm install --save hsla-regex\n```\n\n## Usage\n\n```javascript\nvar hslaRegex = require('hsla-regex');\n\nhslaRegex({ exact: true }).test('hsla(123, 45%, 67%, .8)');  // => true\nhslaRegex({ exact: true }).test('foo bar');  // => false\n\nhslaRegex({ exact: true }).exec('hsla(1, 1.111%, 1.1111%, .8)');\n// => [\n//  'hsla(1, 1.111%, 1.1111%, .8)',\n//  '1',\n//  '1.111%',\n//  '1.1111%',\n//  '.8'\n//  index: 0,\n//  input: 'hsla(1, 1.111%, 1.1111%, .8)'\n// ]\n\n'hsla(123, 45%, 67%, .8) cats and dogs'.match(hslaRegex());\n// = ['hsla(123, 45%, 67%, .8)']\n```\n\n## License\n\nMIT\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\nCrafted with <3 by John Otander ([@4lpine](https://twitter.com/4lpine)).\n\n***\n\n> This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git)."
}