{"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"keywords":["color","colour","rgb","css"],"dist-tags":{"latest":"1.5.2"},"author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"description":"Parser and generator for CSS color strings","readme":"# color-string\n\n[![Build Status](https://travis-ci.org/Qix-/color-string.svg?branch=master)](https://travis-ci.org/Qix-/color-string)\n\n> library for parsing and generating CSS color strings.\n\n## Install\n\nWith [npm](http://npmjs.org/):\n\n```console\n$ npm install color-string\n```\n\n## Usage\n\n### Parsing\n\n```js\ncolorString.get('#FFF')                          // {model: 'rgb', value: [255, 255, 255, 1]}\ncolorString.get('#FFFA')                         // {model: 'rgb', value: [255, 255, 255, 0.67]}\ncolorString.get('#FFFFFFAA')                     // {model: 'rgb', value: [255, 255, 255, 0.67]}\ncolorString.get('hsl(360, 100%, 50%)')           // {model: 'hsl', value: [0, 100, 50, 1]}\ncolorString.get('hwb(60, 3%, 60%)')              // {model: 'hwb', value: [60, 3, 60, 1]}\n\ncolorString.get.rgb('#FFF')                      // [255, 255, 255, 1]\ncolorString.get.rgb('blue')                      // [0, 0, 255, 1]\ncolorString.get.rgb('rgba(200, 60, 60, 0.3)')    // [200, 60, 60, 0.3]\ncolorString.get.rgb('rgb(200, 200, 200)')        // [200, 200, 200, 1]\n\ncolorString.get.hsl('hsl(360, 100%, 50%)')       // [0, 100, 50, 1]\ncolorString.get.hsl('hsla(360, 60%, 50%, 0.4)')  // [0, 60, 50, 0.4]\n\ncolorString.get.hwb('hwb(60, 3%, 60%)')          // [60, 3, 60, 1]\ncolorString.get.hwb('hwb(60, 3%, 60%, 0.6)')     // [60, 3, 60, 0.6]\n\ncolorString.get.rgb('invalid color string')      // null\n```\n\n### Generation\n\n```js\ncolorString.to.hex([255, 255, 255])     // \"#FFFFFF\"\ncolorString.to.hex([0, 0, 255, 0.4])    // \"#0000FF66\"\ncolorString.to.hex([0, 0, 255], 0.4)    // \"#0000FF66\"\ncolorString.to.rgb([255, 255, 255])     // \"rgb(255, 255, 255)\"\ncolorString.to.rgb([0, 0, 255, 0.4])    // \"rgba(0, 0, 255, 0.4)\"\ncolorString.to.rgb([0, 0, 255], 0.4)    // \"rgba(0, 0, 255, 0.4)\"\ncolorString.to.rgb.percent([0, 0, 255]) // \"rgb(0%, 0%, 100%)\"\ncolorString.to.keyword([255, 255, 0])   // \"yellow\"\ncolorString.to.hsl([360, 100, 100])     // \"hsl(360, 100%, 100%)\"\ncolorString.to.hwb([50, 3, 15])         // \"hwb(50, 3%, 15%)\"\n\n// all functions also support swizzling\ncolorString.to.rgb(0, [0, 255], 0.4)    // \"rgba(0, 0, 255, 0.4)\"\ncolorString.to.rgb([0, 0], [255], 0.4)  // \"rgba(0, 0, 255, 0.4)\"\ncolorString.to.rgb([0], 0, [255, 0.4])  // \"rgba(0, 0, 255, 0.4)\"\n```\n","repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"users":{"zhangyaochun":true,"rubiadias":true},"bugs":{"url":"https://github.com/qix-/color-string/issues"},"license":"MIT","versions":{"0.1.0":{"name":"color-string","description":"parse and generate CSS color strings","version":"0.1.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"git://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.2.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"_npmJsonOpts":{"file":"/Users/harth/.npm/color-string/0.1.0/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"color-string@0.1.0","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.13","_nodeVersion":"v0.5.0-pre","_defaultsLoaded":true,"dist":{"shasum":"668d0b000b7f9303ad1f91a85b17d0d6778fcbde","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.1.0.tgz"},"scripts":{},"directories":{}},"0.1.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.1.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"git://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.2.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"_npmJsonOpts":{"file":"/Users/harth/.npm/color-string/0.1.1/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"color-string@0.1.1","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"1.0.13","_nodeVersion":"v0.5.0-pre","_defaultsLoaded":true,"dist":{"shasum":"3ea173783bc0603d62c0d1a42a8f876c884df492","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.1.1.tgz"},"scripts":{},"directories":{}},"0.1.2":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.1.2","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.2.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"_id":"color-string@0.1.2","dist":{"shasum":"a413fb7dd137162d5d4ea784cbeb36d931ad9b4a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.1.2.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.1.3":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.1.3","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.2.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"_id":"color-string@0.1.3","dist":{"shasum":"e865d2e3e59f665c3af0de14383f6bf0705685f3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.1.3.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.2.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.2.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.2.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.2.0","_shasum":"a0021d491c84124b0f7532bfabce2ccbf4400f4e","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"dist":{"shasum":"a0021d491c84124b0f7532bfabce2ccbf4400f4e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.2.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"main":"./color-string","dependencies":{"color-convert":"0.5.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"keywords":["color","colour","rgb","css"],"bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.2.1","dist":{"shasum":"2f3c1e6c1d04ddf751633b28db7fbc152055d34e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.2.1.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.2.2":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.2.2","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":"Dyma Ywanov <dfcreative@gmail.com>","repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"scripts":{"test":"node test/basic.js"},"main":"./color-string","dependencies":{"color-name":"0.0.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x","grunt":"^0.4.5"},"keywords":["color","colour","rgb","css"],"bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.2.2","dist":{"shasum":"c68315ac7c2801877b5ef542b6cefddd64e8b88d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.2.2.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.2.3":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.2.3","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":"Dyma Ywanov <dfcreative@gmail.com>","repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"scripts":{"test":"node test/basic.js"},"main":"./color-string","dependencies":{"color-name":"1.0.0"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x","grunt":"^0.4.5"},"keywords":["color","colour","rgb","css"],"bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.2.3","dist":{"shasum":"53a961b67f0c4e5837e328c207420fb858ebbe09","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.2.3.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.2.4":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.2.4","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":"Dyma Ywanov <dfcreative@gmail.com>","repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"scripts":{"test":"node test/basic.js"},"main":"./color-string","dependencies":{"color-name":"1.0.x"},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x","grunt":"^0.4.5"},"keywords":["color","colour","rgb","css"],"bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.2.4","dist":{"shasum":"221ff64234f71aaa3e13bc8c7e8c95f3cdd8f81a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.2.4.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"harth","email":"fayearthur@gmail.com"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"}],"directories":{}},"0.3.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.3.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"}],"repository":{"type":"git","url":"http://github.com/harthur/color-string.git"},"scripts":{"test":"node test/basic.js"},"license":"MIT","main":"./color-string","dependencies":{"color-name":"^1.0.0"},"devDependencies":{},"keywords":["color","colour","rgb","css"],"gitHead":"cb3a23eeadb4abe4a9233c7ba49c731bcb1cfb0a","bugs":{"url":"https://github.com/harthur/color-string/issues"},"homepage":"https://github.com/harthur/color-string","_id":"color-string@0.3.0","_shasum":"27d46fb67025c5c2fa25993bfbf579e47841b991","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"27d46fb67025c5c2fa25993bfbf579e47841b991","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.3.0.tgz"},"directories":{}},"0.4.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"0.4.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+ssh://git@github.com/MoOx/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","main":"./color-string","xo":{"rules":{"no-cond-assign":0}},"dependencies":{"color-name":"^1.0.0"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"d62b66db7ab1879700af879ad4b3df6d91fa7f9f","bugs":{"url":"https://github.com/MoOx/color-string/issues"},"homepage":"https://github.com/MoOx/color-string#readme","_id":"color-string@0.4.0","_shasum":"b5f84c26c74ebe6354def1a2f50853c5bd9028b7","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.1.1","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"b5f84c26c74ebe6354def1a2f50853c5bd9028b7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-0.4.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"directories":{}},"1.0.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.0.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.1.0"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"86d1a14830bec127dbf47594a7d2290de3187f1e","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.0.0","_shasum":"e71584948b3ec5d9a6c8dc4a672fec7c28f42b37","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.1.1","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"e71584948b3ec5d9a6c8dc4a672fec7c28f42b37","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.0.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"directories":{}},"1.0.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.0.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.1"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"c48a65dd513d3bd7a495129a254798f762880a03","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.0.1","_shasum":"1037d8db930e88109ed73b8edf4d86d953428444","_from":".","_npmVersion":"3.3.6","_nodeVersion":"4.1.1","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"1037d8db930e88109ed73b8edf4d86d953428444","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.0.1.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"directories":{}},"1.1.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.1.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.1"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"80d29270f5e75c90c7a5dca2274d3458e28c76bc","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.1.0","_shasum":"02da367264602d51f8a9f7912beefbacdee71590","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"02da367264602d51f8a9f7912beefbacdee71590","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.1.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/color-string-1.1.0.tgz_1459209209085_0.890886572888121"},"directories":{}},"1.1.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.1.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.1"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"4164b3eb1c21334f894fafb38ba0f8215ef45ddf","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.1.1","_shasum":"b585712a51edb5e7a55712332894d24d61f216d2","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"b585712a51edb5e7a55712332894d24d61f216d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.1.1.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/color-string-1.1.1.tgz_1459209962118_0.25149238971062005"},"directories":{}},"1.2.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.2.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.1"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"87d3802d91ba90d0d2d96777e5ae38607a826ee0","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.2.0","_shasum":"51307de03cd97be73e2e98b6f10367802d4a23b6","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"51307de03cd97be73e2e98b6f10367802d4a23b6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.2.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/color-string-1.2.0.tgz_1459218855501_0.2574646498542279"},"directories":{}},"1.3.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.3.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.1"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"30b06b1e5eed570ecebe9f42432f97417c46b5ee","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.3.0","_shasum":"4528263aac55d5a98e09bd1656223c60d0da3d6a","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"4528263aac55d5a98e09bd1656223c60d0da3d6a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.3.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/color-string-1.3.0.tgz_1478892917247_0.7570022414438426"},"directories":{}},"1.3.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.3.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.2"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"0b68ed41a9a2c9f1b0bbe2fe5b7533642d185b69","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.3.1","_shasum":"fc3cc33dd560da0cc7c2dcfc13847900ec665fb1","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"fc3cc33dd560da0cc7c2dcfc13847900ec665fb1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.3.1.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/color-string-1.3.1.tgz_1479263627880_0.3821277366951108"},"directories":{}},"1.4.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.4.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.2"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"32f1603cbc7d2ff2747c7bb52bd5c19260ee43f3","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.4.0","_shasum":"2b47f8565fb0eb52f9f77c801992b8ca55d6e898","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"2b47f8565fb0eb52f9f77c801992b8ca55d6e898","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.4.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/color-string-1.4.0.tgz_1481046072908_0.808069578371942"},"directories":{}},"1.5.0":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.5.0","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.2"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"efa8ffd4a0982edaa657f6aa7b0e0911748d5188","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.5.0","_shasum":"f9a7a0553e55b34d18a463c06f13e3384dd960ce","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"f9a7a0553e55b34d18a463c06f13e3384dd960ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.5.0.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/color-string-1.5.0.tgz_1487792756740_0.15367083810269833"},"directories":{}},"1.5.1":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.5.1","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.2"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"554275a1699e28a1ccc1c40339d912cf9ab0c2ea","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.5.1","_shasum":"5524965d7b2e8eb42e0da52bfecb5bdc7d97156e","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"5524965d7b2e8eb42e0da52bfecb5bdc7d97156e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.5.1.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/color-string-1.5.1.tgz_1489086869605_0.9732784738298506"},"directories":{}},"1.5.2":{"name":"color-string","description":"Parser and generator for CSS color strings","version":"1.5.2","author":{"name":"Heather Arthur","email":"fayearthur@gmail.com"},"contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"repository":{"type":"git","url":"git+https://github.com/qix-/color-string.git"},"scripts":{"pretest":"xo","test":"node test/basic.js"},"license":"MIT","files":["index.js"],"xo":{"rules":{"no-cond-assign":0,"operator-linebreak":0}},"dependencies":{"color-name":"^1.0.0","simple-swizzle":"^0.2.2"},"devDependencies":{"xo":"^0.12.1"},"keywords":["color","colour","rgb","css"],"gitHead":"06c3ad42fd60bb8e872a9ef275d3132656bc9c44","bugs":{"url":"https://github.com/qix-/color-string/issues"},"homepage":"https://github.com/qix-/color-string#readme","_id":"color-string@1.5.2","_shasum":"26e45814bc3c9a7cbd6751648a41434514a773a9","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"26e45814bc3c9a7cbd6751648a41434514a773a9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/color-string/-/color-string-1.5.2.tgz"},"maintainers":[{"name":"harth","email":"fayearthur@gmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"qix","email":"i.am.qix@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/color-string-1.5.2.tgz_1489090151246_0.72102609439753"},"directories":{}}},"name":"color-string","contributors":[{"name":"Maxime Thirouin"},{"name":"Dyma Ywanov","email":"dfcreative@gmail.com"},{"name":"Josh Junon"}],"time":{"modified":"2017-03-09T20:09:13.169Z","created":"2011-06-19T19:01:39.871Z","0.1.0":"2011-06-19T19:01:40.532Z","0.1.1":"2011-06-23T03:04:06.835Z","0.1.2":"2013-02-11T19:28:50.374Z","0.1.3":"2014-03-07T00:41:12.158Z","0.2.0":"2014-07-15T15:17:43.905Z","0.2.1":"2014-07-23T07:31:16.044Z","0.2.2":"2014-12-12T08:16:41.004Z","0.2.3":"2014-12-15T19:46:54.906Z","0.2.4":"2014-12-15T20:53:41.567Z","0.3.0":"2015-02-19T07:26:04.506Z","0.4.0":"2016-01-03T17:26:43.053Z","1.0.0":"2016-01-23T17:13:24.173Z","1.0.1":"2016-01-23T18:04:28.266Z","1.1.0":"2016-03-28T23:53:29.528Z","1.1.1":"2016-03-29T00:06:02.576Z","1.2.0":"2016-03-29T02:34:15.932Z","1.3.0":"2016-11-11T19:35:18.954Z","1.3.1":"2016-11-16T02:33:49.709Z","1.4.0":"2016-12-06T17:41:15.067Z","1.5.0":"2017-02-22T19:45:58.450Z","1.5.1":"2017-03-09T19:14:29.842Z","1.5.2":"2017-03-09T20:09:13.169Z"},"readmeFilename":"README.md","homepage":"https://github.com/qix-/color-string#readme"}