{"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"keywords":["svgo","svg","optimize","minify"],"dist-tags":{"latest":"0.7.2"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"description":"Nodejs-based tool for optimizing SVG vector graphics files","readme":"**english** | [русский](https://github.com/svg/svgo/blob/master/README.ru.md)\n- - -\n\n<img src=\"https://svg.github.io/svgo-logo.svg\" width=\"200\" height=\"200\" alt=\"logo\"/>\n\n## SVGO [![NPM version](https://badge.fury.io/js/svgo.svg)](https://npmjs.org/package/svgo) [![Dependency Status](https://gemnasium.com/svg/svgo.svg)](https://gemnasium.com/svg/svgo) [![Build Status](https://secure.travis-ci.org/svg/svgo.svg)](https://travis-ci.org/svg/svgo) [![Coverage Status](https://img.shields.io/coveralls/svg/svgo.svg)](https://coveralls.io/r/svg/svgo?branch=master)\n\n**SVG O**ptimizer is a Nodejs-based tool for optimizing SVG vector graphics files.\n![](https://mc.yandex.ru/watch/18431326)\n\n## Why?\n\nSVG files, especially exported from various editors, usually contain a lot of redundant and useless information such as editor metadata, comments, hidden elements, default or non-optimal values and other stuff that can be safely removed or converted without affecting SVG rendering result.\n\n## What it can do\n\nSVGO has a plugin-based architecture, so almost every optimization is a separate plugin.\n\nToday we have:\n\n| Plugin | Description |\n| ------ | ----------- | \n| [cleanupAttrs](https://github.com/svg/svgo/blob/master/plugins/cleanupAttrs.js) | cleanup attributes from newlines, trailing, and repeating spaces |\n| [removeDoctype](https://github.com/svg/svgo/blob/master/plugins/removeDoctype.js) | remove doctype declaration |\n| [removeXMLProcInst](https://github.com/svg/svgo/blob/master/plugins/removeXMLProcInst.js) | remove XML processing instructions |\n| [removeComments](https://github.com/svg/svgo/blob/master/plugins/removeComments.js) | remove comments |\n| [removeMetadata](https://github.com/svg/svgo/blob/master/plugins/removeMetadata.js) | remove `<metadata>` |\n| [removeTitle](https://github.com/svg/svgo/blob/master/plugins/removeTitle.js) | remove `<title>` (disabled by default) |\n| [removeDesc](https://github.com/svg/svgo/blob/master/plugins/removeDesc.js) | remove `<desc>` (only non-meaningful by default) |\n| [removeUselessDefs](https://github.com/svg/svgo/blob/master/plugins/removeUselessDefs.js) | remove elements of `<defs>` without `id` |\n| [removeXMLNS](https://github.com/svg/svgo/blob/master/plugins/removeXMLNS.js) | removes `xmlns` attribute (for inline svg, disabled by default) |\n| [removeEditorsNSData](https://github.com/svg/svgo/blob/master/plugins/removeEditorsNSData.js) | remove editors namespaces, elements, and attributes |\n| [removeEmptyAttrs](https://github.com/svg/svgo/blob/master/plugins/removeEmptyAttrs.js) | remove empty attributes |\n| [removeHiddenElems](https://github.com/svg/svgo/blob/master/plugins/removeHiddenElems.js) | remove hidden elements |\n| [removeEmptyText](https://github.com/svg/svgo/blob/master/plugins/removeEmptyText.js) | remove empty Text elements |\n| [removeEmptyContainers](https://github.com/svg/svgo/blob/master/plugins/removeEmptyContainers.js) | remove empty Container elements |\n| [removeViewBox](https://github.com/svg/svgo/blob/master/plugins/removeViewBox.js) | remove `viewBox` attribute when possible (disabled by default) |\n| [cleanupEnableBackground](https://github.com/svg/svgo/blob/master/plugins/cleanupEnableBackground.js) | remove or cleanup `enable-background` attribute when possible |\n| [minifyStyles](https://github.com/svg/svgo/blob/master/plugins/minifyStyles.js) | minify `<style>` elements content with [CSSO](https://github.com/css/csso) |\n| [convertStyleToAttrs](https://github.com/svg/svgo/blob/master/plugins/convertStyleToAttrs.js) | convert styles into attributes |\n| [convertColors](https://github.com/svg/svgo/blob/master/plugins/convertColors.js) | convert colors (from `rgb()` to `#rrggbb`, from `#rrggbb` to `#rgb`) |\n| [convertPathData](https://github.com/svg/svgo/blob/master/plugins/convertPathData.js) | convert Path data to relative or absolute (whichever is shorter), convert one segment to another, trim useless delimiters, smart rounding, and much more |\n| [convertTransform](https://github.com/svg/svgo/blob/master/plugins/convertTransform.js) | collapse multiple transforms into one, convert matrices to the short aliases, and much more |\n| [removeUnknownsAndDefaults](https://github.com/svg/svgo/blob/master/plugins/removeUnknownsAndDefaults.js) | remove unknown elements content and attributes, remove attrs with default values |\n| [removeNonInheritableGroupAttrs](https://github.com/svg/svgo/blob/master/plugins/removeNonInheritableGroupAttrs.js) | remove non-inheritable group's \"presentation\" attributes |\n| [removeUselessStrokeAndFill](https://github.com/svg/svgo/blob/master/plugins/removeUselessStrokeAndFill.js) | remove useless `stroke` and `fill` attrs |\n| [removeUnusedNS](https://github.com/svg/svgo/blob/master/plugins/removeUnusedNS.js) | remove unused namespaces declaration |\n| [cleanupIDs](https://github.com/svg/svgo/blob/master/plugins/cleanupIDs.js) | remove unused and minify used IDs |\n| [cleanupNumericValues](https://github.com/svg/svgo/blob/master/plugins/cleanupNumericValues.js) | round numeric values to the fixed precision, remove default `px` units |\n| [cleanupListOfValues](https://github.com/svg/svgo/blob/master/plugins/cleanupListOfValues.js) | round numeric values in attributes that take a list of numbers (like `viewBox` or `enableBackground`) |\n| [moveElemsAttrsToGroup](https://github.com/svg/svgo/blob/master/plugins/moveElemsAttrsToGroup.js) | move elements' attributes to their enclosing group |\n| [moveGroupAttrsToElems](https://github.com/svg/svgo/blob/master/plugins/moveGroupAttrsToElems.js) | move some group attributes to the contained elements |\n| [collapseGroups](https://github.com/svg/svgo/blob/master/plugins/collapseGroups.js) | collapse useless groups |\n| [removeRasterImages](https://github.com/svg/svgo/blob/master/plugins/removeRasterImages.js) | remove raster images (disabled by default) |\n| [mergePaths](https://github.com/svg/svgo/blob/master/plugins/mergePaths.js) | merge multiple Paths into one |\n| [convertShapeToPath](https://github.com/svg/svgo/blob/master/plugins/convertShapeToPath.js) | convert some basic shapes to `<path>` |\n| [sortAttrs](https://github.com/svg/svgo/blob/master/plugins/sortAttrs.js) | sort element attributes for epic readability (disabled by default) |\n| [transformsWithOnePath](https://github.com/svg/svgo/blob/master/plugins/transformsWithOnePath.js) | apply transforms, crop by real width, center vertical alignment, and resize SVG with one Path inside (disabled by default) |\n| [removeDimensions](https://github.com/svg/svgo/blob/master/plugins/removeDimensions.js) | remove `width`/`height` attributes if `viewBox` is present (disabled by default) |\n| [removeAttrs](https://github.com/svg/svgo/blob/master/plugins/removeAttrs.js) | remove attributes by pattern (disabled by default) |\n| [removeElementsByAttr](https://github.com/svg/svgo/blob/master/plugins/removeElementsByAttr.js) | remove arbitrary elements by ID or className (disabled by default) |\n| [addClassesToSVGElement](https://github.com/svg/svgo/blob/master/plugins/addClassesToSVGElement.js) | add classnames to an outer `<svg>` element (disabled by default) |\n| [addAttributesToSVGElement](https://github.com/svg/svgo/blob/master/plugins/addAttributesToSVGElement.js) | adds attributes to an outer `<svg>` element (disabled by default) |\n| [removeStyleElement](https://github.com/svg/svgo/blob/master/plugins/removeStyleElement.js) | remove `<style>` elements (disabled by default) |\n\nWant to know how it works and how to write your own plugin? [Of course you want to](https://github.com/svg/svgo/blob/master/docs/how-it-works/en.md). ([동작방법](https://github.com/svg/svgo/blob/master/docs/how-it-works/ko.md))\n\n\n## How to use\n\n```sh\n$ [sudo] npm install -g svgo\n```\n\n```\nUsage:\n  svgo [OPTIONS] [ARGS]\n\nOptions:\n  -h, --help : Help\n  -v, --version : Version\n  -i INPUT, --input=INPUT : Input file, \"-\" for STDIN\n  -s STRING, --string=STRING : Input SVG data string\n  -f FOLDER, --folder=FOLDER : Input folder, optimize and rewrite all *.svg files\n  -o OUTPUT, --output=OUTPUT : Output file or folder (by default the same as the input), \"-\" for STDOUT\n  -p PRECISION, --precision=PRECISION : Set number of digits in the fractional part, overrides plugins params\n  --config=CONFIG : Config file or JSON string to extend or replace default\n  --disable=DISABLE : Disable plugin by name\n  --enable=ENABLE : Enable plugin by name\n  --datauri=DATAURI : Output as Data URI string (base64, URI encoded or unencoded)\n  --multipass : Enable multipass\n  --pretty : Make SVG pretty printed\n  --indent=INDENT : Indent number when pretty printing SVGs\n  -q, --quiet : Only output error messages, not regular status messages\n  --show-plugins : Show available plugins and exit\n\nArguments:\n  INPUT : Alias to --input\n  OUTPUT : Alias to --output\n```\n\n* with files:\n\n        $ svgo test.svg\n\n    or:\n\n        $ svgo test.svg test.min.svg\n\n* with STDIN / STDOUT:\n\n        $ cat test.svg | svgo -i - -o - > test.min.svg\n\n* with folder\n\n        $ svgo -f ../path/to/folder/with/svg/files\n\n    or:\n\n        $ svgo -f ../path/to/folder/with/svg/files -o ../path/to/folder/with/svg/output\n\n* with strings:\n\n        $ svgo -s '<svg version=\"1.1\">test</svg>' -o test.min.svg\n\n    or even with Data URI base64:\n\n        $ svgo -s 'data:image/svg+xml;base64,…' -o test.min.svg\n\n* with SVGZ:\n\n    from `.svgz` to `.svg`:\n\n        $ gunzip -c test.svgz | svgo -i - -o test.min.svg\n\n    from `.svg` to `.svgz`:\n\n        $ svgo test.svg -o - | gzip -cfq9 > test.svgz\n\n* with GUI – [svgo-gui](https://github.com/svg/svgo-gui)\n* as a web app - [SVGOMG](https://jakearchibald.github.io/svgomg/)\n* as a Nodejs module – [examples](https://github.com/svg/svgo/tree/master/examples)\n* as a Grunt task – [grunt-svgmin](https://github.com/sindresorhus/grunt-svgmin)\n* as a Gulp task – [gulp-svgmin](https://github.com/ben-eb/gulp-svgmin)\n* as a Mimosa module – [mimosa-minify-svg](https://github.com/dbashford/mimosa-minify-svg)\n* as an OSX Folder Action – [svgo-osx-folder-action](https://github.com/svg/svgo-osx-folder-action)\n* as a webpack loader – [image-webpack-loader](https://github.com/tcoopman/image-webpack-loader)\n* as a Telegram Bot – [svgo_bot](https://github.com/maksugr/svgo_bot)\n* as a PostCSS plugin - [postcss-svgo](https://github.com/ben-eb/postcss-svgo)\n\n## License and copyrights\n\nThis software is released under the terms of the [MIT license](https://github.com/svg/svgo/blob/master/LICENSE).\n\nLogo by [Yegor Bolshakov](http://xizzzy.ru/).\n","repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"users":{"deepsweet":true,"scf":true,"doodlemoonch":true,"paazmaya":true,"greli":true,"qubyte":true,"stany":true,"andamira":true,"robermac":true,"raiseandfall":true,"markymark":true,"subso":true,"itonyyo":true,"huntie":true,"stevenvachon":true,"pensierinmusica":true,"ujwal_bharat":true,"reecegoddard":true,"davidnyhuis":true,"zeke":true,"lucasmciruzzi":true,"yeahoffline":true,"timdp":true,"tobiasnickel":true,"ackolla":true,"flying-dr":true,"robsoer":true,"smutnyleszek":true,"nickeltobias":true,"gvn":true,"s4g6":true,"reekdeb":true,"hckhanh":true,"ta2edchimp":true,"cfleschhut":true,"bret":true,"hal9zillion":true,"crewmoss":true,"pake007":true,"flozz":true,"gwydionismyhero":true,"mukeshs":true,"arnemahl":true,"pixelcraft":true,"giovannif23":true,"101st":true,"scott.m.sarsfield":true,"nilz3ro":true,"13lank.null":true,"papasavva":true,"spences10":true,"suemcnab":true,"martin_kraft":true,"panlw":true,"vinbhatt":true,"modood":true,"weberliu":true,"sgodoshi":true,"delacap":true},"bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"license":"MIT","versions":{"0.0.1":{"name":"svgo","version":"0.0.1","description":"SVG Optimizer","keywords":["svgo","svg","optimize","minify"],"homepage":" ","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter min","test-v":"./node_modules/.bin/mocha --reporter spec"},"dependencies":{"inherit":"*","q":"0.8","q-fs":"","coa":"0.3.x","sax":"0.4.x","mocha":"1.4.x","should":"","eyes":""},"engines":{"node":">=0.4.0"},"_id":"svgo@0.0.1","dist":{"shasum":"317ee7af4fe545a54d715cb9fdb8c96c1b123ba9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.1.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.1-2":{"name":"svgo","version":"0.0.1-2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter min","test-v":"./node_modules/.bin/mocha --reporter spec"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.1-2","dist":{"shasum":"37fc6ce924623945f4e89b9ddf96e209ecc2cc47","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.1-2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.1-3":{"name":"svgo","version":"0.0.1-3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter min","test-v":"./node_modules/.bin/mocha --reporter spec"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.1-3","dist":{"shasum":"9c7ee2e0f04bf96fe278590b83413f1760409327","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.1-3.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.2":{"name":"svgo","version":"0.0.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter min","test-v":"./node_modules/.bin/mocha --reporter spec"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.2","dist":{"shasum":"51cff3d13495e1ced585aceb09cbdf3d07b5b630","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.2.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.3":{"name":"svgo","version":"0.0.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter min"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.3","dist":{"shasum":"64ee55da2482ed6e2c1df99dfa9b844ba1ad6aa0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.3.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.4":{"name":"svgo","version":"0.0.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.4","dist":{"shasum":"f1f0746255a5935360dd9d3d38d48e3cbee319c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.4.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.5":{"name":"svgo","version":"0.0.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://deepsweet.github.com/svgo","bugs":{"url":"https://github.com/deepsweet/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/deepsweet/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/deepsweet/svgo/master/LICENSE"}],"_id":"svgo@0.0.5","dist":{"shasum":"d251393404f529cac7099d55d20397e029f6fbe3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.5.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.5-1":{"name":"svgo","version":"0.0.5-1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.5-1","dist":{"shasum":"faa3a2c3341a3d49b0f87807bb807228ea70a91e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.5-1.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.6":{"name":"svgo","version":"0.0.6","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.6","dist":{"shasum":"a43dce8658e74e14ffa988c2f8d5d4194b56aa73","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.6.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.7":{"name":"svgo","version":"0.0.7","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.7","dist":{"shasum":"d26bd3a6614e49787e4ec55e349af66408878909","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.7.tgz"},"_npmVersion":"1.1.62","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.7-1":{"name":"svgo","version":"0.0.7-1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":"","node.extend":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.7-1","dist":{"shasum":"86e52f5b40fa3bbba022b55d0685946eae1200a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.7-1.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.8":{"name":"svgo","version":"0.0.8","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":"","node.extend":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.8","dist":{"shasum":"e6507389cc7c1f6d740ad5cc60d59ac0f3777c40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.8.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.9":{"name":"svgo","version":"0.0.9","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"0.8.x","q-fs":"","coa":"0.3.x","inherit":"","node.extend":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.9","dist":{"shasum":"0be68c901010c44b69c303289756208dd94053a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.9.tgz"},"_npmVersion":"1.1.63","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.0.9-1":{"name":"svgo","version":"0.0.9-1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","directories":{"bin":"./bin","lib":"./lib"},"bin":{"svgo":"./bin/svgo"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive"},"dependencies":{"sax":"0.4.x","q":"~0.8.10","q-fs":"","coa":"~0.3.7","inherit":"","node.extend":""},"devDependencies":{"mocha":"1.4.x","should":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.0.9-1","dist":{"shasum":"958b87d042705db26a97cf7887c80857d086e2be","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.0.9-1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.0":{"name":"svgo","version":"0.1.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --require should test/config test/svg2js"},"dependencies":{"sax":"~0.4","q":"~0.8.10","q-fs":"~0.1","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.6","should":"~1","istanbul":"~0.1","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.0","dist":{"shasum":"aea9d97ed7937e1d3ea5709c8218b08e81a5cc36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.0.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.1":{"name":"svgo","version":"0.1.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --require should test/config test/svg2js"},"dependencies":{"sax":"~0.4","q":"~0.8.10","q-fs":"~0.1","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.6","should":"~1","istanbul":"~0.1","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.1","dist":{"shasum":"c2ea56781d029d711a839cb1f08b707877370753","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.1.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.2":{"name":"svgo","version":"0.1.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --require should test/config test/svg2js"},"dependencies":{"sax":"~0.4","q":"~0.8.10","q-fs":"~0.1","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.6","should":"~1","istanbul":"~0.1","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.2","dist":{"shasum":"97fc686dae4dadaf3cb80581c39c2d1fcf5cb85f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.2.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.3":{"name":"svgo","version":"0.1.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --require should --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --require should test/config test/svg2js","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4","q":"~0.8.10","q-fs":"~0.1","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.6","should":"~1","istanbul":"~0.1","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.3","dist":{"shasum":"237a37157a26ba238d32b08cf7fafba9479a5a85","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.3.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.4":{"name":"svgo","version":"0.1.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.4","dist":{"shasum":"ec33c3fda5a8651bedf0c815938f949ac17e662d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.4.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.5":{"name":"svgo","version":"0.1.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.5","dist":{"shasum":"294f604634137442872e7d71c23303ad791a647b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.5.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.6":{"name":"svgo","version":"0.1.6","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.6","dist":{"shasum":"e85eaf672a261643d095b983eab58f7ce191d89c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.6.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.7":{"name":"svgo","version":"0.1.7","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.7","dist":{"shasum":"45bae9ea0e30594b59b00b6ef82d8e46bdcd7247","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.7.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.8":{"name":"svgo","version":"0.1.8","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.8","dist":{"shasum":"6ba6a308e05bbbd5e9742f7593366b2698788804","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.8.tgz"},"_npmVersion":"1.1.66","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.9":{"name":"svgo","version":"0.1.9","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.9","dist":{"shasum":"4136178b7d68bb6cec215737d6afe430c4412e88","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.9.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.1.9-1":{"name":"svgo","version":"0.1.9-1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"svgo@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.1.9-1","dist":{"shasum":"734dd8cc9cc9efa2b12b4f93f945b33bd6324167","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.1.9-1.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.2.0":{"name":"svgo","version":"0.2.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.2.0","dist":{"shasum":"c86b6032131165b78626dad30b7a3660c180614a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.2.0.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.2.1":{"name":"svgo","version":"0.2.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.4.2","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","yamljs":"~0.1.3","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.7.0","mocha-as-promised":"~1.1.0","chai":"~1.1.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.2.1","dist":{"shasum":"0a79127a86c7e640db10326033659620a06d248b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.2.1.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.2.2":{"name":"svgo","version":"0.2.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.5.0","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","js-yaml":"","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.8.0","mocha-as-promised":"~1.2.0","chai":"~1.5.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.2.2","dist":{"shasum":"d2eeaa88f0e1c026dccc3cdd0df04d1082cee113","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.2.2.tgz"},"_from":".","_npmVersion":"1.2.10","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.2.3":{"name":"svgo","version":"0.2.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.5.0","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","js-yaml":"","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.8.0","mocha-as-promised":"~1.2.0","chai":"~1.5.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.2.3","dist":{"shasum":"7dbbdad182240ac867d8666ed6d28bf33d655362","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.2.3.tgz"},"_from":".","_npmVersion":"1.2.11","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.2.4":{"name":"svgo","version":"0.2.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha --reporter spec --recursive","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.5.0","q":"~0.8.10","q-fs":"~0.1.0","coa":"~0.3.7","inherit":"","node.extend":"","js-yaml":"","colors":"~0.6.0"},"devDependencies":{"mocha":"~1.8.0","mocha-as-promised":"~1.2.0","chai":"~1.5.0","chai-as-promised":"~3.2.3","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.2.4","dist":{"shasum":"44faca9c01c6c47aa764d29615542547f305d0f0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.2.4.tgz"},"_from":".","_npmVersion":"1.2.16","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.0":{"name":"svgo","version":"0.3.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.0","dist":{"shasum":"52abb3a168e31acec1da2986bae19566cc7a9b0b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.0.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.1":{"name":"svgo","version":"0.3.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"./node_modules/.bin/mocha","cover":"./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib && ./node_modules/.bin/mocha --reporter mocha-istanbul --recursive","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.1","dist":{"shasum":"ffd76c739f450b8ee6c7fb0b1502bf0829d81959","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.1.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.2":{"name":"svgo","version":"0.3.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.2","dist":{"shasum":"4a38c3c13cecb7801e21d275c7f7557f549bb9a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.2.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.3":{"name":"svgo","version":"0.3.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.3","dist":{"shasum":"3345cc034fdb5691f9945708b8cfaefc450135d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.3.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.4":{"name":"svgo","version":"0.3.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.4","dist":{"shasum":"2869a3207d56168135fb2e12f57c962c5ab5d226","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.4.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.5":{"name":"svgo","version":"0.3.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.5","dist":{"shasum":"7640e5f8eb3796e280dede6ede3f92fc64f31829","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.5.tgz"},"_from":".","_npmVersion":"1.2.19","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.6":{"name":"svgo","version":"0.3.6","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.6","dist":{"shasum":"8a71807b55bd5d594bdd56d2fb335cad292d82b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.6.tgz"},"_from":".","_npmVersion":"1.2.23","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.3.7":{"name":"svgo","version":"0.3.7","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.3.7","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.9.0","should":"~1.2.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.3.7","dist":{"shasum":"18e6bbfd9f70b84b5fe88e6656d84402c71ae7a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.3.7.tgz"},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.0":{"name":"svgo","version":"0.4.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.4.0","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.6.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.0","dist":{"shasum":"166141f25535398067c1797e622ef38b3f030b25","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.0.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.1":{"name":"svgo","version":"0.4.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.4.0","js-yaml":"","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.1","dist":{"shasum":"b983b6f48d89d0b08c6b08169e778b3a7fcd7ced","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.2":{"name":"svgo","version":"0.4.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.5.0","coa":"~0.4.0","js-yaml":"~2.1.0","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.1.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.2","dist":{"shasum":"d0e5943abb9102e0da3a82b63ae7bed7173c53d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.2.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.3":{"name":"svgo","version":"0.4.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.6.0","coa":"~0.4.0","js-yaml":"~2.1.0","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.2.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.3","dist":{"shasum":"c4cb45762f90f292983deb649d609c2bf48a5ea6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.3.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.4":{"name":"svgo","version":"0.4.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"http://svg.github.com/svgo/","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.6.0","coa":"~0.4.0","js-yaml":"~2.1.0","colors":"~0.6.0","whet.extend":""},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.2.0","mocha-istanbul":"","coveralls":""},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.4","dist":{"shasum":"71931b8b18bfaac02daf5d2b4db14e4c9222d900","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.4.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"deepsweet","email":"kir@soulshine.in"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"}]},"0.4.5":{"name":"svgo","version":"0.4.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.6.0","coa":"~0.4.0","js-yaml":"~2.1.0","colors":"~0.6.0","whet.extend":"~0.9.9"},"devDependencies":{"mocha":"~1.14.0","should":"~2.1.0","istanbul":"~0.2.0","mocha-istanbul":"~0.2.0","coveralls":"~2.11.1"},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"_id":"svgo@0.4.5","dist":{"shasum":"ba56155fb1733728956c01b405221ee7e789a2a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.4.5.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}]},"0.5.0":{"name":"svgo","version":"0.5.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.6.0","coa":"~0.4.1","js-yaml":"~3.2.2","colors":"~1.0.3","whet.extend":"~0.9.9"},"devDependencies":{"mocha":"~2.0.1","should":"~4.1.0","istanbul":"~0.3.2","mocha-istanbul":"~0.2.0","coveralls":"~2.11.2"},"engines":{"node":">=0.8.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"gitHead":"0d5ce7d4e01fa5910bcf0e7159a3fd6239da388d","_id":"svgo@0.5.0","_shasum":"2c4bc220fc204ed1896639dfb71837177e52bfc8","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"2c4bc220fc204ed1896639dfb71837177e52bfc8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.0.tgz"}},"0.5.1":{"name":"svgo","version":"0.5.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~0.6.1","coa":"~1.0.1","js-yaml":"~3.2.3","colors":"~1.0.3","whet.extend":"~0.9.9","mkdirp":"~0.5.0"},"devDependencies":{"mocha":"~2.2.1","should":"~5.2.0","istanbul":"~0.3.11","mocha-istanbul":"~0.2.0","coveralls":"~2.11.2"},"engines":{"node":">=0.10.0"},"licenses":[{"type":"MIT","url":"https://raw.github.com/svg/svgo/master/LICENSE"}],"gitHead":"7fb966c0d1d0d78e8fba8d9b8693b4516aa0d854","_id":"svgo@0.5.1","_shasum":"db241c98728b1dc7b26b51ce8519fba5149417f4","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"db241c98728b1dc7b26b51ce8519fba5149417f4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.1.tgz"}},"0.5.2":{"name":"svgo","version":"0.5.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.1","coa":"~1.0.1","js-yaml":"~3.3.1","colors":"~1.1.0","whet.extend":"~0.9.9","mkdirp":"~0.5.1"},"devDependencies":{"mocha":"~2.2.5","should":"6.0.3","istanbul":"~0.3.14","mocha-istanbul":"~0.2.0","coveralls":"~2.11.2"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"bd1b8adfc95c8e383fdfc566f0dcf1a12827818b","_id":"svgo@0.5.2","_shasum":"51e394f281da9ebb83dabf91f6aa91a2d603ba26","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"51e394f281da9ebb83dabf91f6aa91a2d603ba26","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.2.tgz"}},"0.5.3":{"name":"svgo","version":"0.5.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.1","coa":"~1.0.1","js-yaml":"~3.3.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1"},"devDependencies":{"mocha":"~2.2.5","should":"7.0.1","istanbul":"~0.3.15","mocha-istanbul":"~0.2.0","coveralls":"~2.11.2"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"739a296621fd710a1773d9d8cdcdf84e5914d2fa","_id":"svgo@0.5.3","_shasum":"71d97ae51ec25b91864eb38435820b9ff37dbfb2","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"71d97ae51ec25b91864eb38435820b9ff37dbfb2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.3.tgz"}},"0.5.4":{"name":"svgo","version":"0.5.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.1","coa":"~1.0.1","js-yaml":"~3.3.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1"},"devDependencies":{"mocha":"~2.2.5","should":"7.0.2","istanbul":"~0.3.17","mocha-istanbul":"~0.2.0","coveralls":"~2.11.3"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"4527f7fddc4e3f0dd35189b8e6df90840560015e","_id":"svgo@0.5.4","_shasum":"508c22e0bb8972d5abc4af52f4c0d7f2c825dff6","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"508c22e0bb8972d5abc4af52f4c0d7f2c825dff6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.4.tgz"}},"0.5.5":{"name":"svgo","version":"0.5.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.1","coa":"~1.0.1","js-yaml":"~3.3.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1"},"devDependencies":{"mocha":"~2.2.5","should":"7.0.2","istanbul":"~0.3.17","mocha-istanbul":"~0.2.0","coveralls":"~2.11.3"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"23c2631c10063bbe86bd49ef0eef5b98b675e943","_id":"svgo@0.5.5","_shasum":"3dff8a0803c4f40c245295816e355204d1da3872","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"3dff8a0803c4f40c245295816e355204d1da3872","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.5.tgz"}},"0.5.6":{"name":"svgo","version":"0.5.6","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.1","coa":"~1.0.1","js-yaml":"~3.3.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1"},"devDependencies":{"mocha":"~2.2.5","should":"7.0.3","istanbul":"~0.3.17","mocha-istanbul":"~0.2.0","coveralls":"~2.11.4"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"e80121beb2a5c2e9565cf7204c23e99541d5929c","_id":"svgo@0.5.6","_shasum":"9501c533cf84f74a79be1bb3f3494d912bbed119","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"9501c533cf84f74a79be1bb3f3494d912bbed119","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.5.6.tgz"}},"0.6.0":{"name":"svgo","version":"0.6.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.4","coa":"~1.0.1","js-yaml":"~3.4.3","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~1.4.1"},"devDependencies":{"mocha":"~2.3.3","should":"7.1.1","istanbul":"~0.4.0","mocha-istanbul":"~0.2.0","coveralls":"~2.11.4"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"93e54df4367937ad5527390aabe570770d9c5df7","_id":"svgo@0.6.0","_shasum":"2dd93dd51120faa94e381baf3dbe2a5446034fec","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"2dd93dd51120faa94e381baf3dbe2a5446034fec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.0.tgz"}},"0.6.1":{"name":"svgo","version":"0.6.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.4","coa":"~1.0.1","js-yaml":"~3.4.3","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~1.4.2"},"devDependencies":{"mocha":"~2.3.4","should":"7.1.1","istanbul":"~0.4.0","mocha-istanbul":"~0.2.0","coveralls":"~2.11.4"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"7327974335d8ae69d576c6602411d005f4a66020","_id":"svgo@0.6.1","_shasum":"b9dd8d450660ca5f88b22271fbdc8b2a966637a9","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"b9dd8d450660ca5f88b22271fbdc8b2a966637a9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.1.tgz"}},"0.6.2":{"name":"svgo","version":"0.6.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.6","coa":"~1.0.1","js-yaml":"~3.5.3","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~1.6.4"},"devDependencies":{"mocha":"~2.4.5","should":"8.2.2","istanbul":"~0.4.2","mocha-istanbul":"~0.2.0","coveralls":"~2.11.8"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"8491eeedcb892b6c7f2221dd23c4ea7735a37bd7","_id":"svgo@0.6.2","_shasum":"43d793c3b4e88d7e1a7acfd65df178deec10dfb1","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"43d793c3b4e88d7e1a7acfd65df178deec10dfb1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/svgo-0.6.2.tgz_1457459410912_0.48484180006198585"}},"0.6.3":{"name":"svgo","version":"0.6.3","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.1.6","coa":"~1.0.1","js-yaml":"~3.5.3","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~1.6.4"},"devDependencies":{"mocha":"~2.4.5","should":"8.2.2","istanbul":"~0.4.2","mocha-istanbul":"~0.2.0","coveralls":"~2.11.8"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"e69f0a27bea0b5dc258a42167d20009d0c21c209","_id":"svgo@0.6.3","_shasum":"6d7f1ac23d7f47671718ad5db9ab770c933b2daa","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"6d7f1ac23d7f47671718ad5db9ab770c933b2daa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.3.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/svgo-0.6.3.tgz_1458497994131_0.5105111070442945"}},"0.6.4":{"name":"svgo","version":"0.6.4","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.5.5","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~1.8.1"},"devDependencies":{"mocha":"~2.4.5","should":"8.3.0","istanbul":"~0.4.2","mocha-istanbul":"~0.2.0","coveralls":"~2.11.9"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"b35d828d49e2608d889df8ccebd9d499ede37583","_id":"svgo@0.6.4","_shasum":"670ebeaaba9636a00b3eb11f04bccbf9743c082f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"670ebeaaba9636a00b3eb11f04bccbf9743c082f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/svgo-0.6.4.tgz_1459869280302_0.09754533134400845"}},"0.6.5":{"name":"svgo","version":"0.6.5","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.6.0","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~2.0.0"},"devDependencies":{"mocha":"~2.4.5","should":"8.3.1","istanbul":"~0.4.3","mocha-istanbul":"~0.2.0","coveralls":"~2.11.9"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"bb1fe4ab450f6d0787712eb00a673034d436fbe3","_id":"svgo@0.6.5","_shasum":"a7bc1fa1ce2e2fb5016f782e20d3d3275af808a5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"a7bc1fa1ce2e2fb5016f782e20d3d3275af808a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.5.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/svgo-0.6.5.tgz_1461583411637_0.8377753694076091"}},"0.6.6":{"name":"svgo","version":"0.6.6","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"make test"},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.6.0","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~2.0.0"},"devDependencies":{"mocha":"~2.4.5","should":"8.3.1","istanbul":"~0.4.3","mocha-istanbul":"~0.2.0","coveralls":"~2.11.9"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"fd605b694489551f4ba9ee745c7319f0c2c8bbc1","_id":"svgo@0.6.6","_shasum":"b340889036f20f9b447543077d0f5573ed044c08","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"dist":{"shasum":"b340889036f20f9b447543077d0f5573ed044c08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.6.6.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/svgo-0.6.6.tgz_1461583779403_0.3135576066561043"}},"0.7.0":{"name":"svgo","version":"0.7.0","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"set NODE_ENV=test && mocha","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.6.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~2.2.1"},"devDependencies":{"mocha":"~3.0.2","should":"11.1.0","istanbul":"~0.4.5","mocha-istanbul":"~0.3.0","coveralls":"~2.11.12"},"engines":{"node":">=0.12.0"},"license":"MIT","gitHead":"975a9ff223b562a440ccd919715092275024c950","_id":"svgo@0.7.0","_shasum":"51a95c5f7aaa98824f92857ac14c2cdbe81537aa","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"dist":{"shasum":"51a95c5f7aaa98824f92857ac14c2cdbe81537aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.7.0.tgz"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/svgo-0.7.0.tgz_1472156700345_0.016561583383008838"}},"0.7.1":{"name":"svgo","version":"0.7.1","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"set NODE_ENV=test && mocha","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.6.1","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~2.2.1"},"devDependencies":{"mocha":"~3.1.0","should":"11.1.0","istanbul":"~0.4.5","mocha-istanbul":"~0.3.0","coveralls":"~2.11.14"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"928c2449cb4e48f044a01dd1651e5fb78e5383c4","_id":"svgo@0.7.1","_shasum":"287320fed972cb097e72c2bb1685f96fe08f8034","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"dist":{"shasum":"287320fed972cb097e72c2bb1685f96fe08f8034","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.7.1.tgz"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/svgo-0.7.1.tgz_1474965956326_0.5539999476168305"}},"0.7.2":{"name":"svgo","version":"0.7.2","description":"Nodejs-based tool for optimizing SVG vector graphics files","keywords":["svgo","svg","optimize","minify"],"homepage":"https://github.com/svg/svgo","bugs":{"url":"https://github.com/svg/svgo/issues","email":"kir@soulshine.in"},"author":{"name":"Kir Belevich","email":"kir@soulshine.in","url":"https://github.com/deepsweet"},"contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"repository":{"type":"git","url":"git://github.com/svg/svgo.git"},"main":"./lib/svgo.js","bin":{"svgo":"./bin/svgo"},"directories":{"bin":"./bin","lib":"./lib","example":"./examples"},"scripts":{"test":"set NODE_ENV=test && mocha","jshint":"jshint --show-non-errors ."},"dependencies":{"sax":"~1.2.1","coa":"~1.0.1","js-yaml":"~3.7.0","colors":"~1.1.2","whet.extend":"~0.9.9","mkdirp":"~0.5.1","csso":"~2.3.1"},"devDependencies":{"mocha":"~3.2.0","should":"11.2.0","istanbul":"~0.4.5","mocha-istanbul":"~0.3.0","coveralls":"~2.11.14"},"engines":{"node":">=0.10.0"},"license":"MIT","gitHead":"ad053787d019e3efc0e21b7478e5b1c7816b17d6","_id":"svgo@0.7.2","_shasum":"9f5772413952135c6fefbf40afe6a4faa88b4bb5","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.1","_npmUser":{"name":"greli","email":"grelimail@gmail.com"},"dist":{"shasum":"9f5772413952135c6fefbf40afe6a4faa88b4bb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/svgo/-/svgo-0.7.2.tgz"},"maintainers":[{"name":"deepsweet","email":"kir@soulshine.in"},{"name":"greli","email":"grelimail@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/svgo-0.7.2.tgz_1485713082455_0.026603003963828087"}}},"name":"svgo","contributors":[{"name":"Sergey Belov","email":"peimei@ya.ru","url":"http://github.com/arikon"},{"name":"Lev Solntsev","email":"lev.sun@ya.ru","url":"http://github.com/GreLI"}],"time":{"modified":"2017-07-04T16:30:45.256Z","created":"2012-09-27T11:15:51.133Z","0.0.1":"2012-09-27T11:15:53.396Z","0.0.1-2":"2012-09-27T22:04:55.047Z","0.0.1-3":"2012-09-28T00:05:07.777Z","0.0.2":"2012-09-28T08:56:00.813Z","0.0.3":"2012-09-29T10:33:38.205Z","0.0.4":"2012-09-29T20:56:02.777Z","0.0.5":"2012-10-03T15:26:20.899Z","0.0.5-1":"2012-10-03T18:43:34.799Z","0.0.6":"2012-10-04T20:00:36.366Z","0.0.7":"2012-10-14T10:44:53.030Z","0.0.7-1":"2012-10-15T15:45:33.230Z","0.0.8":"2012-10-20T18:57:01.067Z","0.0.8-1":"2012-10-21T09:18:20.304Z","0.0.9":"2012-10-28T23:13:19.397Z","0.0.9-1":"2012-11-06T22:31:09.192Z","0.1.0":"2012-11-22T17:36:14.971Z","0.1.1":"2012-11-23T15:05:39.542Z","0.1.2":"2012-11-23T20:32:11.771Z","0.1.3":"2012-11-30T16:14:03.804Z","0.1.4":"2012-12-06T09:25:58.278Z","0.1.5":"2012-12-06T20:29:03.366Z","0.1.6":"2012-12-07T12:08:09.795Z","0.1.7":"2012-12-08T11:21:59.902Z","0.1.8":"2012-12-11T16:35:06.001Z","0.1.9":"2012-12-17T20:42:07.942Z","0.1.9-1":"2012-12-21T14:59:59.913Z","0.2.0":"2012-12-23T13:18:57.435Z","0.2.1":"2013-01-18T14:00:25.097Z","0.2.2":"2013-02-09T11:07:11.222Z","0.2.3":"2013-02-22T21:27:03.350Z","0.2.4":"2013-04-05T15:16:26.735Z","0.3.0":"2013-04-12T12:22:45.545Z","0.3.1":"2013-04-15T12:37:58.438Z","0.3.2":"2013-05-03T18:06:14.942Z","0.3.3":"2013-05-05T12:33:27.182Z","0.3.4":"2013-05-06T16:54:11.070Z","0.3.5":"2013-05-07T14:20:13.756Z","0.3.6":"2013-06-06T10:11:45.357Z","0.3.7":"2013-06-24T16:20:42.872Z","0.4.0":"2013-11-18T20:49:23.273Z","0.4.1":"2013-11-18T21:06:21.455Z","0.4.2":"2013-12-19T12:11:07.474Z","0.4.3":"2014-01-02T18:31:49.261Z","0.4.4":"2014-01-14T14:20:34.331Z","0.4.5":"2014-08-02T13:15:40.795Z","0.5.0":"2014-11-04T21:36:48.779Z","0.5.1":"2015-03-30T12:01:52.730Z","0.5.2":"2015-05-24T19:06:46.712Z","0.5.3":"2015-06-21T19:24:06.187Z","0.5.4":"2015-08-05T14:01:58.513Z","0.5.5":"2015-08-05T14:14:05.150Z","0.5.6":"2015-08-13T16:23:45.353Z","0.6.0":"2015-11-08T17:35:51.522Z","0.6.1":"2015-11-21T11:06:34.889Z","0.6.2":"2016-03-08T17:50:15.354Z","0.6.3":"2016-03-20T18:19:56.726Z","0.6.4":"2016-04-05T15:14:42.780Z","0.6.5":"2016-04-25T11:23:33.592Z","0.6.6":"2016-04-25T11:29:41.275Z","0.7.0":"2016-08-25T20:25:01.087Z","0.7.1":"2016-09-27T08:45:58.357Z","0.7.2":"2017-01-29T18:04:43.079Z"},"readmeFilename":"README.md","homepage":"https://github.com/svg/svgo"}