{"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist-tags":{"latest":"4.3.0","dev":"3.2.2","tg":"3.2.5-dev2"},"author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"description":"Gonzales Preprocessor Edition (fast CSS parser)","readme":"# Gonzales PE @dev\n\n[![NPM version][npm-img]][npm]\n[![Build Status][travis-img]][travis]\n[![AppVeyor Build Status][appveyor-img]][appveyor]\n\n[npm-img]:      https://img.shields.io/npm/v/gonzales-pe.svg\n[npm]:          https://www.npmjs.com/package/gonzales-pe\n[travis-img]:   https://travis-ci.org/tonyganch/gonzales-pe.svg\n[travis]:       https://travis-ci.org/tonyganch/gonzales-pe\n[appveyor-img]: https://ci.appveyor.com/api/projects/status/m29jphtrqt398v2o/branch/dev?svg=true\n[appveyor]:     https://ci.appveyor.com/project/tonyganch/gonzales-pe/branch/dev\n\nGonzales PE is a CSS parser which plays nicely with preprocessors.    \nCurrently those are supported: SCSS, Sass, LESS.    \nTry out Gonzales PE online: [Gonzales PE Playground](https://tonyganch.io/gonzales-pe/).\n\n## Install\n\n(1) To install command-line tool globally:\n\n```bash\nnpm install -g git://github.com/tonyganch/gonzales-pe.git#dev\n```\n\n(2) To install parser as a project dependency:\n\n```bash\nnpm install --save git://github.com/tonyganch/gonzales-pe.git#dev\n```\n\n(3) If for some reason you want to build files yourself:\n\n```bash\n# Clone the repo.\ngit clone git@github.com:tonyganch/gonzales-pe.git\n# Go to dev branch.\ngit checkout dev\n# Install project dependencies.\nnpm install\n# Install git hooks and build files.\nnpm run init\n```\n\n## API\n\nBasically there are a few things you can do:\n\n1. parse css string and get a parse tree in return;\n2. modify tree nodes;\n3. remove tree nodes;\n4. add new nodes to the tree;\n5. convert modified tree back to a string.\n\nThe different type of tree nodes can be found in [docs/node-types.md](https://github.com/tonyganch/gonzales-pe/blob/dev/docs/node-types.md).\n\nIn examples below I assume that `gonzales` is a parser module and `parseTree`\nis some parsed css:\n\n```js\nlet gonzales = require('gonzales-pe');\nlet parseTree = gonzales.parse(css);\n```\n\n### gonzales.createNode(options)\n\n##### Description\n\nCreates a new node. Useful when you need to add something to a tree.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>options</td>\n    <td>Options to pass to a `Node` constructor.</td>\n  </tr>\n  <tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>A new node.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet css = 'a {color: tomato}';\nlet parseTree = gonzales.parse(css);\nlet node = gonzales.createNode({ type: 'animal', content: 'panda' });\nparseTree.content.push(node);\n```\n\n\n### gonzales.parse(css[, options])\n\n##### Description\n\nParses a css string.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>css</td>\n    <td>A string to parse.</td>\n  </tr>\n  <tr>\n    <td><i>{Object=}</i></td>\n    <td>options</td>\n    <td>Optional. Additional options:\n      <ul>\n        <li>\n          <code>{string} syntax</code> — any of the following: <code>css</code>,\n          <code>less</code>, <code>sass</code>, <code>scss</code>.\n          Default one is <code>css</code>.\n        </li>\n        <li>\n          <code>{string} context</code> — root node's type. For a list of available\n          values see <a href=\"docs/node-types.md\">\"Node types\"</a>. Default\n          one is <code>stylesheet</code>.\n        </li>\n        <li>\n          <code>{number} tabSize</code> — size of a tab character in spaces.\n          Default one is 1.\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>Parse tree.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet css = 'a {color: tomato}';\nlet parseTree = gonzales.parse(css);\n```\n\n```js\nlet less = 'a {$color: tomato}';\nlet parseTree = gonzales.parse(less, {syntax: 'less'});\n```\n\n```js\nlet less = '$color: tomato';\nlet parseTree = gonzales.parse(less, {syntax: 'less', rule: 'declaration'});\n```\n\n### parseTree.contains(type)\n\n##### Description\n\nChecks whether there is a child node of given type.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>type</td>\n    <td>\n      Node type we're looking for. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{boolean}</i></td>\n    <td>\n      <code>true</code> if a tree contains a child node of a given type,\n      <code>false</code> otherwise.\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nif (parseTree.contains('space')) {\n  doSomething();\n}\n```\n\n### parseTree.content\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{string|Array}</i></td>\n    <td>Node's content (child nodes or a string).</td>\n  </tr>\n</table>\n\n### parseTree.eachFor([type, ]callback)\n\n##### Description\n\nCalls a function for every child node in tree. If `type` parameter is passed,\ncalls a function only for child nodes of a given type. The main difference from\n`parseTree.forEach()` is that this method loops through node list from the end\nto beginning.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string=}</i></td>\n    <td>type</td>\n    <td>\n      Optional. A node type by which to filter child nodes before applying\n      a callback function. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n  <tr>\n    <td><i>{Function}</i></td>\n    <td>callback</td>\n    <td>\n      Function to call for every child node. Accepts following parameters:\n      <ul>\n        <li><code>{Object}</code> — a child node;</li>\n        <li><code>{number}</code> — index of the child node in node list;</li>\n        <li>\n          <code>{Object}</code> — parent node (equals to <code>parseTree</code>).\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nparseTree.eachFor(function(childNode) {\n  doSomething(childNode);\n});\n```\n\n```js\n// Remove all child spaces.\nparseTree.eachFor('space', function(spaceNode, i) {\n  parseTree.removeChild(i);\n});\n```\n\n### parseTree.end\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>\n      End position of the node. Contains following info:\n      <ul>\n        <li>\n          <code>{number} line</code> — last symbol's line number\n          (1-based index);\n        </li>\n        <li>\n          <code>{number} column</code> — last symbol's column number\n          (1-based index).\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n### parseTree.first([type])\n\n##### Description\n\nGets the first child node. If `type` parameter is passed, gets the first child\nnode of a given type. If no node has been found, returns `null`.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string=}</i></td>\n    <td>type</td>\n    <td>\n      Optional. Node type to look for. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{?Object}</i></td>\n    <td>A node.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet node = parseTree.first();\nnode.content = 'panda';\n```\n\n```js\nlet node = parseTree.first('multilineComment');\nnode.content = 'panda';\n```\n\n### parseTree.forEach([type, ]callback)\n\n##### Description\n\nCalls a function for every child node in tree. If `type` parameter is passed,\ncalls a function only for child nodes of a given type. The main difference from\n`parseTree.eachFor()` is that this method loops through node list from the\nbeginnig to end.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string=}</i></td>\n    <td>type</td>\n    <td>\n      Optional. A node type by which to filter child nodes before applying\n      a callback function. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n  <tr>\n    <td><i>{Function}</i></td>\n    <td>callback</td>\n    <td>\n      Function to call for every child node. Accepts following parameters:\n      <ul>\n        <li><code>{Object}</code> — a child node;</li>\n        <li><code>{number}</code> — index of the child node in node list;</li>\n        <li>\n          <code>{Object}</code> — parent node (equals to <code>parseTree</code>).\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nparseTree.forEach(function(childNode) {\n  doSomething();\n});\n```\n\n```js\nparseTree.forEach('space', function(spaceNode) {\n  doSomething();\n});\n```\n\n### parseTree.get(index)\n\n##### Description\n\nGets *nth* child of the `parseTree`. If no node has been found, returns `null`.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{number}</i></td>\n    <td>index</td>\n    <td>Index number of node which we're looking for.</td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{?Object}</i></td>\n    <td>A node.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nvar node = parseTree.get(2);\ndoSomething(node);\n```\n\n### parseTree.insert(index, node)\n\n##### Description\n\nInserts a node to a given position in `parseTree`.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{number}</i></td>\n    <td>index</td>\n    <td>Index of position where to insert the node.</td>\n  </tr>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>node</td>\n    <td>A node to insert.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet node = gonzales.createNode({type: 'animal', content: 'panda'});\nparseTree.insert(2, node);\n```\n\n### parseTree.is(type)\n\n##### Description\n\nChecks whether the node is of given type.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>type</td>\n    <td>\n      A node type against which to check type of <code>parseTree</code>.\n      For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{boolean}</i></td>\n    <td>\n      <code>true</code> if types are equal, <code>false</code> otherwise.\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nif (node.is('space')) {\n  node.content = '';\n}\n```\n\n### parseTree.last(type)\n\nGets the last child node. If `type` parameter is passed, gets the last child\nnode of a given type. If no node has been found, returns `null`.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string=}</i></td>\n    <td>type</td>\n    <td>\n      Optional. Node type to look for. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{?Object}</i></td>\n    <td>A node.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet node = parseTree.last();\nnode.content = 'panda';\n```\n\n```js\nlet node = parseTree.last('multilineComment');\nnode.content = 'panda';\n```\n\n### parseTree.length\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{number}</i></td>\n    <td>Number of child nodes.</td>\n  </tr>\n</table>\n\n### parseTree.removeChild(index)\n\n##### Description\n\nRemoves a child node at a given position.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{number}</i></td>\n    <td>index</td>\n    <td>Index of a child node we need to remove.</td>\n  </tr>\n</table>\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>Removed node.</td>\n  </tr>\n</table>\n##### Examples\n\n```js\n// Swap nodes.\nvar node = parseTree.removeChild(1);\nparseTree.insert(0, node);\n```\n\n### parseTree.start\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>\n      Start position of the node. Contains following info:\n      <ul>\n        <li>\n          <code>{number} line</code> — first symbol's line number\n          (1-based index);\n        </li>\n        <li>\n          <code>{number} column</code> — first symbol's column number\n          (1-based index).\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n\n### parseTree.syntax\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>Syntax of original parsed string.</td>\n  </tr>\n</table>\n\n### parseTree.toJson()\n\n##### Description\n\nConverts parse tree to JSON. Useful for printing.\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{Object}</i></td>\n    <td>Parse tree in JSON</td>\n  </tr>\n</table>\n\n### parseTree.toString()\n\n##### Description\n\nConverts parse tree back to string according to original syntax.\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>A compiled string.</td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nlet css = parseTree.toString();\n```\n\n### parseTree.traverse(callback)\n\n##### Description\n\nCalls the function for every node in a tree including `parseTree` itself.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{Function}</i></td>\n    <td>callback</td>\n    <td>\n      Function to apply to every node. Accepts following parameters:\n      <ul>\n        <li><code>{Object}</code> — a node to which we apply callback;</li>\n        <li><code>{number}</code> — node's index number inside its parent;</li>\n        <li><code>{Object}</code> — a node's parent;</li>\n        <li>\n          <code>{number}</code> — node's nesting level relative to its parent.\n        </li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\nparseTree.traverse(function(node, index, parent) {\n  if (node.is('multilineComment')) {\n    parent.removeChild(index);\n  } else if (node.is('space')) {\n    node.content = ' ';\n  }\n});\n```\n\n### parseTree.traverseByType(type, callback)\n\n##### Description\n\nThis method should be called for a root node, because calling it for a child\nwill be more time consuming.    \nCalls the function for every node of a given type. This means not just child\nnodes, but grandchilds and so on.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>type</td>\n    <td>\n      Node type. For a list of available values please see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n  <tr>\n    <td><i>{Function}</i></td>\n    <td>callback</td>\n    <td>\n      Function to apply to every node of a given type.\n      Accepts following parameters:\n      <ul>\n        <li><code>{Object}</code> — a node to which we apply callback;</li>\n        <li><code>{number}</code> — node's index number inside its parent;</li>\n        <li><code>{Object}</code> — a node's parent.</li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\n// Remove all comments.\nparseTree.traverseByType('multilineComment', function(node, index, parent) {\n  parent.removeChild(index);\n});\n```\n\n### parseTree.traverseByTypes(types, callback)\n\n##### Description\n\nThis method should be called for a root node, because calling it for a child\nwill be more time consuming.    \nCalls the function for every node of given types. This means not just child\nnodes, but grandchilds and so on.\n\n##### Parameters\n\n<table>\n  <tr>\n    <td><i>{Array.string}</i></td>\n    <td>types</td>\n    <td>\n      List of node types. For a list of available values please see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n  <tr>\n    <td><i>{Function}</i></td>\n    <td>callback</td>\n    <td>\n      Function to apply to every node of given types.\n      Accepts following parameters:\n      <ul>\n        <li><code>{Object}</code> — a node to which we apply callback;</li>\n        <li><code>{number}</code> — node's index number inside its parent;</li>\n        <li><code>{Object}</code> — a node's parent.</li>\n      </ul>\n    </td>\n  </tr>\n</table>\n\n##### Examples\n\n```js\n// Remove all comments and spaces.\nlet types = ['multilineComment', 'space'];\nparseTree.traverseByTypes(types, function(node, index, parent) {\n  parent.removeChild(index);\n});\n```\n\n### parseTree.type\n\n##### Returns\n\n<table>\n  <tr>\n    <td><i>{string}</i></td>\n    <td>\n      Node type. For a list of available values see\n      <a href=\"docs/node-types.md\">\"Node types\"</a>.\n    </td>\n  </tr>\n</table>\n\n\n## Test\n\nTo run tests:\n\n    npm test\n\nThis command will build library files from sources and run tests on all files\nin syntax directories.\n\nEvery test has 3 files: source stylesheet, expected parse tree and expected\nstring compiled back from parse tree to css.\n\nIf some tests fail, you can find information in test logs:\n\n- `log/test.log` contains all information from stdout;\n- `log/expected.txt` contains only expected text;\n- `log/result.txt` contains only result text.\n\nThe last two are made for your convenience: you can use any diff app to see\nthe defference between them.\n\nIf you want to test one specific string or get a general idea of how Gonzales\nworks, you can use `test/ast.js` file.    \nSimply change the first two strings (`css` and `syntax` vars) and run:\n\n    node test/single-test.js\n\n## Report\n\nIf you find a bug or want to add a feature, welcome to [Issues](https://github.com/tonyganch/gonzales-pe/issues).\n\nIf you are shy but have a question, feel free to [drop me a\nline](mailto:tonyganch+gonzales@gmail.com).\n","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"users":{"nice_body":true,"cappadona":true},"bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","versions":{"2.0.0-alpha":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.0-alpha","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.0-alpha","dist":{"shasum":"69bd8eecf8871e65e088aa25663123d1679bb81e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.0-alpha.tgz","integrity":"sha512-vPq3Eq4zH30ert1yinUIRrINmZxbFWjxrRQ/ox91WkMcoUXA34PO0nELjtEJiZnqI4rauQSCE/VbFOD7qBuNow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBA2lzQkx0B6iiQh2wnUWmRWN9bv9scCRqrYCjxde43YAiEA/SXLL/0BCUnyN2WevcwHNrJ5hGoKDe9NFeBXDwyOhvQ="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.0-beta":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.0-beta","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.0-beta","dist":{"shasum":"191e532534677b6febfd6665211859b74c1010a4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.0-beta.tgz","integrity":"sha512-wghdc242FXl0fOIqxbbXCDXGazaLnfAQzUQ1NlBqU0oB821eSpzx07asHv+0oq4ylNL/tcWinibh9TM/PQEFow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDfrgZojUUDxZ0B8HuZcLdkOQGe+laqBwTYAKES/aBIvQIhAKSI2vU+E2uza1d/6Q+J9et4UfIWlDpHDCpXhpCL0sdK"}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.0-rc0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.0-rc0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.0-rc0","dist":{"shasum":"6c85ec4412a36bf965e7f73ade9b93223f2ac402","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.0-rc0.tgz","integrity":"sha512-rWfg9+TG0MXoOldfZMZtCd3Om3sG3QmhFeQD9axQGLN6NFPJd6k2GDU/S3h94/sWntuBov4s1NVsRyZT7LsduQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmrq4O5mPSE+4cG+pGFAAuqJppTNcT3SfQEkh/c2huJgIhAPjQfWpeOPBTMNnWIK2xeTtHpKU0AN76lrkjAgyM9Srm"}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.0-rc1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.0-rc1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.0-rc1","dist":{"shasum":"0473cd1c9faf83e5f0af4574513cfd93c912ea76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.0-rc1.tgz","integrity":"sha512-c8sI98RPpUsdKihECHMk3UhJcLjossS5LsnXoz3VTH/HEi0fVYjDjb8zK7QLD/tUk/vTj51A5uezMuTLGXia9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDI+XKXe5Yz6kw+1CJ58/jLmSL6YwI2GP/ljWaNmN9o6AIgM+uytBLF5J7GJOdwjvTmTEpKv4M6RM8xGU9ycfr/ims="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.0","dist":{"shasum":"3c83dcb0ee051f124d950140249f0035ce3ae173","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.0.tgz","integrity":"sha512-P0/3kl+uHfgO0WVj9DwzYBSU2JuL6xgNRcc6UNCxSJsk0MprrZyHGII08LWmTxXfiDus+iR2B/idH9o5OntS8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICPUcP6L9+wiPc1fyTzzJNjcTpzHTeZWeLbI8zEBkpuKAiBKEZuj+e00sy6uACoPDCw3EGTkok+kas3eE6KXBJNOOQ=="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":"http://github.com/tonyganch/gonzales-pe/issues","license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch@gmail.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.1","dist":{"shasum":"262b6a207966d813ac995144ff7fdeb2d52e914e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.1.tgz","integrity":"sha512-HDuBUUbTqL02fodELjP/040dpiHD1cQI/ZM/+vUtBngNseWQpE66CXEh/y19yDqXBMutSKsA8Uj4ghKC/FY0LA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID2mLpBX+A6QLlANQXvdWtntDVvC/RgUk+E7F5XZZ2C9AiB+RHBt80w6A8n/g+5PhJgr4ClxlhpGgH9qatz/hARlYg=="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"anonymous","email":"tonyganch@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"2.0.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"2.0.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/test.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","microtime":"~0.3.3"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@2.0.2","dist":{"shasum":"91fe206cfd9fabb067732c495a9e7f48ebddd3c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-2.0.2.tgz","integrity":"sha512-RpskFL5GRsQa+ZfB9cAyxiv5ZNg5/eY77g+8qfgjxdcqTe260Zmj1jGmVU7jJbJoBwMrH1wVl5o2z4a84dCVaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDSUNOPgjMn1Y1Acf6ay5FEU7OK5KC5NzolThzpiOgehAiBcCVJn6eva2cp7PM0C4r096W7vnwsVHYtYBfPp/QZpng=="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch+github@gmail.com"}],"directories":{}},"3.0.0-1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-1","dist":{"shasum":"14638e23d8822c43576b12c8c6eb80843622c7f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-1.tgz","integrity":"sha512-u1l0MxfZA0XbVKeqhXGW3+L9QHM/aVGmdBq9xmC/8YVaGa+bzfLE1B/URMj0EhrF8vdjXJ+ZG5VurZOrLz8V0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk+ep7E1+KTGBgWxJQIo2OVG2e80X+7VYPfd4o7K+snwIgcZTWd12sltvDy7nC0xCFeG052I8L8ui7jxo8YKm9bAY="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-2","dist":{"shasum":"63710066543a718874f8f111bffb34deb9d5f097","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-2.tgz","integrity":"sha512-zOm8FDL+WyIMuVDzLKhjy7lhNbjiY5qrhlB9A3O028xknMahxWf4XdqX1v11hOW/i6xPbsUCWen78XM6RlQ4jw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEoYBfksURH9IloFZ0wM3Gy4GHYaIys4fkmashdYK61gIgRYdGa6+BYEMPA2bhs861FwQjWmsx/C0CW5D2vAN9TjM="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-3","dist":{"shasum":"229db8fb7cd6351ce9adb59f2a9643f3c5e797d8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-3.tgz","integrity":"sha512-Nf5oNV/lbhIuvT8G+LxDz1RO4lNFJy6BzoCqaNGOiODp038gbf+XvzfVdK1XGqgnNC58QgvkAPQP9LC+6pUI6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAlbgzjsSBNuq+BLGVGXULdrYylInNHjTYo/l3UYJz4FAiAHFI8KPcidXYMQChPy5+fkG/dm0jMngj0vBScnLkr8qw=="}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-4":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-4","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-4","dist":{"shasum":"151d9e7ea855c37c3e98f48d5f21452b3c9960b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-4.tgz","integrity":"sha512-0pYEwRxBt+43aHWg7V0rEhJw6NmxjicJtXBum/4BPjVJJKBH+cWoVNddFZkdSMJH8DwtmzTR52rqjV7ljYwkEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7PtRJxVIzjmFO0KOmQhSl87xjGbYqD0ZBFMnLVpk1rwIhAIuzf+q6SimiDLmqNNFUOVZ22eokhLd0nN/YouBmCwDS"}]},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-5":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-5","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-5","_shasum":"37603f9e1f4042372db3ef569a6c8c0c83f19357","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"37603f9e1f4042372db3ef569a6c8c0c83f19357","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-5.tgz","integrity":"sha512-bp9ajWEI/P8y+3J2qfJ4tKPTIs70M1XE4ncPh+JXlvqyEpTzEoQev5D02MV+goBYi9mBQriKBNdoGYtasomANg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYhFM/BctByGpygpajK1juuQkiLVemwXEoA8bsFufGOgIgEWLthDGJPdEqqP5bEAGSZ7ciw+BK+uLancoArfg/SPo="}]},"directories":{}},"3.0.0-6":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-6","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(make && mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"latest","microtime":"~0.3.3","mocha":"latest"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-6","_shasum":"d9cdb6eadb5815be6aa58a57299df98fbc7faba9","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"d9cdb6eadb5815be6aa58a57299df98fbc7faba9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-6.tgz","integrity":"sha512-1HnVKDcm0ThzhWONz3wY6Br1ompge5jZSzgSzJ2OZ4sJM+Ho1t24kpfqAsOAD7moaiTUYcw/+cAI8LV9XRLMjQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvt4+yK1irmD+yAfPd7ok3WIRYBS5TfYzeqS4iQMDLbwIhAKriqLTs1VFFRkzqQctrioot/3bMtxZBrKgvQCpADrAJ"}]},"directories":{}},"3.0.0-7":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-7","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-7","_shasum":"04dac1e07f3195d1b343f64e1f3497bd5894134b","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"04dac1e07f3195d1b343f64e1f3497bd5894134b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-7.tgz","integrity":"sha512-HP23TQuTV7a6Qinmcpp94BrbwNjTlVO4v1WZJOuJoOuuXAc5pH3Fj/flOHM8q0aJEWjpsNPzMO0XMglH+gWAvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGeUTuwVJ/CYbqPMK3D1CtXtCqh/KLWnwiBnbMEWnHm2AiEAkiY+tdVD3lfLU+FfRg3XRPr8KsUYX/yvgaZoZT7rP+4="}]},"directories":{}},"3.0.0-8":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-8","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"_id":"gonzales-pe@3.0.0-8","_shasum":"9393d3c9dbfb6a5c5e1331da545783ab5e81b5ca","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"9393d3c9dbfb6a5c5e1331da545783ab5e81b5ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-8.tgz","integrity":"sha512-Fxx5IAIOyUGsu8Gsu+daQfa4qQDGOgtiXOTIIF5gbnCXzsE1+sKFqosdbU+dBbG+9SKIRgWMKjZy24QY1VDTeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEF9ti3b6IeJAvxwR/jF1yJzjKdqlJk49fgAGl/O/PEwIgWn9alIDosGQrHBF0Bsh6VZJSzcvWfAXgnwGiX8WcMQI="}]},"directories":{}},"3.0.0-9":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-9","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"4c8f81b48b94798a8bd6c3889137ae979973f823","_id":"gonzales-pe@3.0.0-9","_shasum":"71212036953cf2d01d55dadfd9f0d3dedd40cbf7","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"71212036953cf2d01d55dadfd9f0d3dedd40cbf7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-9.tgz","integrity":"sha512-pZfJ/Fw1mIaUbtah2wPR83pQlvCehJWlcNQllfdrlwGqHJisJQJergrRHmg/JRvA2wMRjfc5GQQdS3hyZIqTzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHq5QQ+qxmN62hguLwxuAuFw5YRctLmnPJKL+SKOhXX1AiAXyljMEYPMS0jHUw1OGv3fYt5gFk+moFSGZyeqgF0dAw=="}]},"directories":{}},"3.0.0-10":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-10","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"8d860d993f2a645644c0e5bc0d59951cdb64990b","_id":"gonzales-pe@3.0.0-10","_shasum":"6dac1b7e4070118042de92c6ff7a8fc346255dde","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"6dac1b7e4070118042de92c6ff7a8fc346255dde","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-10.tgz","integrity":"sha512-VOZk3cHXbrhTkExc8zt0Sb6Pgb7kGzPeamcdUMEpgZnvDmDiPzA3g7vxGwgJ3m1v30UPmgsAicjYZs26DmogCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIACPIh3qJLQw1jloWqXpuRcc8E8pbQkbK+0oNqaCXgkcAiEA3tlFFUnjO30cFBnJAqEodogVVd9SDQuW7nlttHgTY64="}]},"directories":{}},"3.0.0-11":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-11","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"test":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"2096b65d56c2776f761f93542adb442beab53089","_id":"gonzales-pe@3.0.0-11","_shasum":"c6731a6a16c7209bd67de75dc9354eebea02db0e","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"c6731a6a16c7209bd67de75dc9354eebea02db0e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-11.tgz","integrity":"sha512-VFNXm2HVo8/qTg/3Tiu//vWlZUVm2f6B8WATW/SdPuJqcEMO6hd0Vqu4wpXphA9Xg9jCcL9+NlUmuQRAcU/Grg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCE2l40Cy6DZ3SyXgmj+elbHAOb90zj68oHfkvtgEL9jgIhAOFuRF9Bjmmkypmbzmec1Z+MACoPRdMPErXVW0tVBuRD"}]},"directories":{}},"3.0.0-12":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-12","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"benchmark":"~1.0.0","coffee-script":"~1.7.1","microtime":"~0.3.3","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"744ef78207e2285f4ea356149ced1733cef1dc4b","_id":"gonzales-pe@3.0.0-12","_shasum":"25d94f386753902be1e5649ec63fbeecc04c0aea","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"25d94f386753902be1e5649ec63fbeecc04c0aea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-12.tgz","integrity":"sha512-8kWPmK8kMH/vb1lhmSKd803KoKrKvXe0Adqyy6P8oSKTrYSS6J4LkcesFDEQ29tiShoWIufI37Vad52Z0Gv+qA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGs7lQQGFEuJ9ZZ6bd0a+wU5C0UTjnkDMNaF1CSXqF43AiEA3kHHZPqWVpS/4PVLmSmnMtpdAjVl1FdqqsKLiFApCZ8="}]},"directories":{}},"3.0.0-13":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-13","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/parse","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"dc565bc959b12803519a7f5a4e711ef92cbac69f","_id":"gonzales-pe@3.0.0-13","_shasum":"e72765302571611c45f18062df4472c913c239bc","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"e72765302571611c45f18062df4472c913c239bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-13.tgz","integrity":"sha512-Hwd6NICt/t8uZYt+uowuoJt8wIISlCGxxcxAEEtxxb+GVi747Bmkx+XRT78xJbNrXJI8cwLJzEgvDzVXYT5wLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDynT4jUsWaTkYQPjvpFXR+1v3gvn0yorw3T/e62bnr3AiABPm9TU1JgABVPpzs2SE22Zy3nmg73CE4gbvo28tySJQ=="}]},"directories":{}},"3.0.0-14":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-14","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/parse","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"d58c617b86169f0c1c1e3e0628244d4f1ab6dc21","_id":"gonzales-pe@3.0.0-14","_shasum":"6fd52942435525d5a51d895290a6f0a910181d75","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"6fd52942435525d5a51d895290a6f0a910181d75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-14.tgz","integrity":"sha512-Fuqk1hm6BHjaSgl3SWfoWJjPswAhWJQxFnV81RmPqT7hKpMtnU7XDl5HcTXcN24tONKDt+6hyD3uJdfd25lENw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBzNacZFMc5Rd8/28g5fVhS+OPD1JuZvzdxvW16JqtxgIhAKk1XaLPl/5w5RZkEhoUouNdycH3PMo0HJBByqfNOw9C"}]},"directories":{}},"3.0.0-15":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-15","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"36a73dbab74a07e9658e0f603934730542b959ee","_id":"gonzales-pe@3.0.0-15","_shasum":"a6e16a02fd61d07b8f1d2e498161794e862c204c","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"a6e16a02fd61d07b8f1d2e498161794e862c204c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-15.tgz","integrity":"sha512-h1gXE1POHBn70e9UH/7Jnxr9s305nAWqyo2L9pyEONSpRS0nLKR0ta/q/NN7H52OcHxGnN2Y7zljXyPyf5HlxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/nbGVu8M1TLCkw07z/DNkOcujkAS8jKWbvsIl24w6iQIhANL8EOH0C56TYr+//EiH6MxRwKr3oaaxQZx0B5gM/6JJ"}]},"directories":{}},"3.0.0-16":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-16","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"e221b56b92631e94542739eb7cb09e79a11ed652","_id":"gonzales-pe@3.0.0-16","_shasum":"9475e961cd8736d4645ee944a685175d9c4328eb","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"9475e961cd8736d4645ee944a685175d9c4328eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-16.tgz","integrity":"sha512-Oh3SQeoB9usvZmF/hXEK/aoBv7SlZFSyPIlWiyaXQ+hpYt+5uUCavi80adKjspsgeTrnHeXlIg/MwG8PasWSTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCjtDv8puetRr/LG5x3EWOYEK8vq3ZEtCAIl8Udp4GICAIhAPDB+G14UfFmgxzwcvnC5Rbyq4eMuAHfkO9EGV3beWbP"}]},"directories":{}},"3.0.0-26":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-26","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"2bb58a9526e08f28b3b1144201822cc94ada916c","_id":"gonzales-pe@3.0.0-26","_shasum":"3feea8ebdf7715b3b96a708b1ab06dece740b14d","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"3feea8ebdf7715b3b96a708b1ab06dece740b14d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-26.tgz","integrity":"sha512-QmXqsCWoAwEHxzL5ulQRbIngJsAgODjlt7V1/n6OnYASeEbd3RxA3tefDTZgE8gamf7JEExCVYsgvQHiGe8Kzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDf0A36Vk7SZMKy9+YiiSOS7TQbzpGFmnQZMHFixw3jJwIhAIsj0qvmZWhHzIqcFhNvWBueMPAf7pkm085yt4ILD6Lo"}]},"directories":{}},"3.0.0-27":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-27","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"727817d535774c0688d8343f7761cb1970b8ae07","_id":"gonzales-pe@3.0.0-27","_shasum":"1e425e75c392ac49062f5bea75c237967ad614c5","_from":".","_npmVersion":"2.1.14","_nodeVersion":"0.11.13","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"1e425e75c392ac49062f5bea75c237967ad614c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-27.tgz","integrity":"sha512-XXaP3MaYfO70U+GH83dzaT90Y91BsOWQ9T9ZuLff20EbFPBjmhSM+mw/rp4AfOkHNBmvQRB0885cretGXa/8lA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGbR4bjzbEcxiaM8xbyc7PjB0Cqf8BY1e18ndSnlFRCgIhAMyHfj3MKT7ozlGi32VkhjgkjAgJDdDfnjxgvHOPIxBG"}]},"directories":{}},"3.0.0-28":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-28","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"~1.20.0"},"engines":{"node":">=0.6.0"},"gitHead":"b3c273defdef00c499ed739648c74ae9e2649147","_id":"gonzales-pe@3.0.0-28","_shasum":"dd50b41dd15b682a28c40e5f0ff2007901ac62bd","_from":".","_npmVersion":"2.0.0-beta.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"dd50b41dd15b682a28c40e5f0ff2007901ac62bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-28.tgz","integrity":"sha512-sCw8URZxZobuEYqQxip57k2ND5nO1JPV9DL3pzCdjd9RDghFOCunMRxKRmC1qgyZUHGfYtOWZ4Q00zCY8Rgf5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZkys6LFrjMIUTixZYypwWg43STnLxtK8useliCvZ+NwIhAJ6pRnDTtm2f9MHMiDJ4+yiJP5xM80CEHmE6GL0jz5S6"}]},"directories":{}},"3.0.0-29":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-29","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"http://github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"bd7baceb28717f8418abd4ce9b6e19120132a485","_id":"gonzales-pe@3.0.0-29","_shasum":"19845ff871e679f776c4ae91f1216076e50dc9c8","_from":".","_npmVersion":"2.0.0-beta.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"dist":{"shasum":"19845ff871e679f776c4ae91f1216076e50dc9c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-29.tgz","integrity":"sha512-Bn3CGtMHDSYU7FXXKWRca5RPinCElELV4Hpz4DRnbM6we8oFrGwTwPOSnwfY9J4CCbUpp3TvA46FKVIhglP7LA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZHBlJ/gpyiRtiOoYn5FWY6GuACDChTtL7Y4sms2yPcgIhAJiFySakgv2Ljjs8pp4wiI7ha1m2n9VI7GpZ/VQdul4T"}]},"directories":{}},"3.0.0-30":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-30","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"log":"(mkdir -p log && node ./test/mocha.js) | tee ./log/test.log","test":"node ./test/mocha.js"},"bin":{"gonzales":"./bin/gonzales.js"},"devDependencies":{"coffee-script":"~1.7.1","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"5acb0296b998c4490d5db2364b671bbcaf10de9c","_id":"gonzales-pe@3.0.0-30","_shasum":"22f8e7c24d3612be6edb65ae52fca60820c931df","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"22f8e7c24d3612be6edb65ae52fca60820c931df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-30.tgz","integrity":"sha512-ila0WfO1knztfvFb4Wl1Wj4ahdLvlJp048JyJFAaB2h3p0OYhretR4av5AcaX74uqSAIDHT4MMMMqyw8aBH22A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD5JkhyMM0Y5y2Ix2n5jEi5G2jZ/3CsL1OW9nNSeJBhdQIgUFxqz4BociD5dSpCBh4E/mYfRPjb8Uj93EYQORx7594="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-31":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-31","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jshint":"2.3.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"326b401f69d6101a2ecea77064031957785d2853","_id":"gonzales-pe@3.0.0-31","_shasum":"dc30d9dc607cb848518fa673b4e4ca1583db2552","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"dc30d9dc607cb848518fa673b4e4ca1583db2552","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-31.tgz","integrity":"sha512-xNIVx3GpL31d/Vrqwi1SJnq22jZCv2cv4ZhrAZrPY57exTwAOrK4uLzpKDof0Em1tkHu8f5+Ih4r8CzxWGjBDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGxLJXmjgz4g7r1W/0Bja43sS28RLDfDoBWD/RzeocicAiBi8Sa+GjYkp/VslSKHMmC7Vrx7IF6FdCIG1AYkee+xEw=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0-beta":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0-beta","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"8a4e6b7104786aa421f4d8af9cb3f4bd87203567","_id":"gonzales-pe@3.0.0-beta","_shasum":"6c15408ec52162f99ccda237ef0e0ad509f9fe4f","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"6c15408ec52162f99ccda237ef0e0ad509f9fe4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0-beta.tgz","integrity":"sha512-LOVrr+V1Daru+w81527bMHZFSSMw4jrH+JeJCM8Go+DDgSue9JHi5P+X6dk8IMXqbPIKOxjjcmtiTDxqtNRy6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvxTGNjG91mOVExgdfVhz9oN9c3ORMpyZmhCVH3M4BlgIhAKBByn4PLIsSTTjr8uuasc3t/OvyE8PxtraFM786iYT9"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"7d9aba3a9c343eac0d9065fc1133adc5a91fd070","_id":"gonzales-pe@3.0.0","_shasum":"bdd6f4b9f83d69e6f69893c08c3556008abb666f","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"bdd6f4b9f83d69e6f69893c08c3556008abb666f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.0.tgz","integrity":"sha512-5C6BrN+8Wif0b8r50zXajUQjjpOU/XjUXRyzklJQoWw6aUFl3Fo0tJsWsun8gI8qydXvl4eocM6TEdVFPfwlGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDg2pJYyDT0etne3ySyxNABK5Sw+AeLHQksMQmps4XyVgIhAK/Gn0RoTulZUBgbvWxhn4qf8RSMgv9Cio9E0Cx+TwQ+"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"870d47f23559274c49646a024f9e9a3d7be981a4","_id":"gonzales-pe@3.0.1","_shasum":"5379d6185685dbff1dab70a44fae2cd38522c600","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"5379d6185685dbff1dab70a44fae2cd38522c600","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.1.tgz","integrity":"sha512-M7p+sygDzsUFssJ4d8PWkne6FFo0jqeVMdGFN1GlH0liZrdSJaCzLb29PRu+y4BV5ap+ZlMQ3OSM7ZWnblXWHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTCpLFkI9eRi7jVRyFhyARGPMX9J7TJgon2SW3+oR93AIgdYOEZ5lgV/5T1wZyfQcPL2E5NYWbay+yrGopQ/AAZLU="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"ca067d1afc62088f2ac73a775d666bec97600537","_id":"gonzales-pe@3.0.2","_shasum":"c4816786c23e8f09d9cc41a5562534f3c0e13754","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"c4816786c23e8f09d9cc41a5562534f3c0e13754","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.2.tgz","integrity":"sha512-gKD46caj6Q8XZslu7hHcGy7QMYnttzL9x6q5omU4NZYIMcN8ak1sBte4rRI8023S9zT7om40P+6cAsdA3GWF6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCSQG5IfvT9BdAue3lV7pqnNeOH+48rK73JGpd0p4pR3wIgX6YTzzUpFlv+HQylqvTNSI6vWx0V2gZ8fXgu9E/atO8="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.0.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.0.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"59cb16cfa4b2dc8b450357321d241418ecdefd7e","_id":"gonzales-pe@3.0.3","_shasum":"5e60b39efabdf05b62c2fdc2fab944e1cd1d9b5d","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"5e60b39efabdf05b62c2fdc2fab944e1cd1d9b5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.0.3.tgz","integrity":"sha512-9GBm1EO74iwctGM9oR0tl3ELXOPuXU3lzYlpqIH/0Bgt0Xp0KWP71EpVpJDEdHwAKMBr64Ip/PSwJduDLg89aA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHsHzfYmWb6mbi1q8+kfS1MoPErlltmLpcr3FXqozfTtAiEA20kx69nasasB3D7W1F/G/zu/H9s0xMIutZ9/g8QtbbA="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.1.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.1.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"1ba503c03b34324b8eae2b9a7d61f2f4bb09a418","_id":"gonzales-pe@3.1.0","_shasum":"6cfc0445ce769542893fda601c885e165b090337","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"6cfc0445ce769542893fda601c885e165b090337","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.1.0.tgz","integrity":"sha512-X/jZWgWdCuby2MIiZRbUgB24KGE6RQKhnLiMhHwgtbLwco76cst1gpB0Em7+yPG8sK/Csl2LUG8j9dh2e8MK1w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2X5XiUEEL28E0voMMx0CdM9e/NA6fU0WbGCMTDXZ9QgIgf1WNGUrWpdNObHKBUuOjO6gXFN4i3ysK9ZVm6L2VcEI="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.1.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.1.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"11383c5086e3faf4c38036e24ef82240490313c0","_id":"gonzales-pe@3.1.1","_shasum":"945185933ed77acb445970697bbe5ac4abeed8ea","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"945185933ed77acb445970697bbe5ac4abeed8ea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.1.1.tgz","integrity":"sha512-MdWNAjYChIvW/8b+qkmRVeJ+yD/xMmtiTZAPydyzG5LnRV13hXpn4q9FlzKCFhyQkQdx9OMGgB94s7zyxPqi1Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICcOCBhTpZLoP25KWySB34IEzecmF8n5ZgD4YtTzY2lpAiEAi5xF2xvnIrrpu2a5YGnOcga9uOOGd3Q5Ju6kGl2yq6w="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.2.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"7bf3aafc1b049c79b1d7e963c5b73ec4e7a1bf08","_id":"gonzales-pe@3.2.0","_shasum":"b0a4fb68619453a94e54c7a4c0d8458576a2da04","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"b0a4fb68619453a94e54c7a4c0d8458576a2da04","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.0.tgz","integrity":"sha512-Af3oq2KLDbF5tG1cEeimJFf1aWZ8YsgsCtMsXgBdsLjyL3hCVdGp5GOz6QrioJWexMqlORVmxZGU/HWYjIdBDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWKmaoodcQY/tvPhTOt5vLv5TiwX0vK31sGm+fDeELcAiBivgyEWJq8rCiJBjmVlDhK5nYovrPYzG4Z//mdAth8Ng=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.2.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"8f452da7355dd9904e1142aaab1de6ec6fc2f2a7","_id":"gonzales-pe@3.2.1","_shasum":"5738f5e4f0a86d1e793250466c4e76aabecfbe5d","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"5738f5e4f0a86d1e793250466c4e76aabecfbe5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.1.tgz","integrity":"sha512-FwZUU5n/xNFICl4xxfJ3Slv+Sq8bRDD0SHkv1pM4tkHxvs5AOcjXOxwEfkRBYtd0rQdZWw2+L7Vim7HhPlfUnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICLVdFGmL1EdTzj/akGUy4x+tAJvsXd/KBWL/OVxUbFSAiBs79qZOiDFukhAuVFuSDMnH/f018ZiB4g/LJ931auxsA=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.2.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"files":["bin","lib"],"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"eedc7712aaf439234498804332950f8969682b1d","_id":"gonzales-pe@3.2.2","_shasum":"bbefe3873b1fe7f0c9b2398d6c5e6afa5ba769a0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"bbefe3873b1fe7f0c9b2398d6c5e6afa5ba769a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.2.tgz","integrity":"sha512-+Lrk0A7ozNZMDEXWL8HXyxSBFvGKg2a+4NVaaJrV2xvsMu7OvOjt6AOil1JX6V7NsciOXuyyBMG3cS7R7I+NOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBinr4LnMBOiBCeKRqHtd+bLQkTI2fZ8X4LLFSMWKD8qAiA5lNXuF1rcWgSmYYFZi10xBHdnruROFE53XL/Q7tNG9Q=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"directories":{}},"3.2.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"./scripts/postinstall.sh","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"c3d8e2084697bc5e47ee85b596dc1f60ce94a6e3","_id":"gonzales-pe@3.2.3","_shasum":"430d42c3eb1dcc2a8326b94fb0d827c534e70faa","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"430d42c3eb1dcc2a8326b94fb0d827c534e70faa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.3.tgz","integrity":"sha512-7LXwjOFkoh/syM++3yWPZBL3AYiUXXDOoWMClr52EIwTlglV1EM8cEXuBtZW6OhOn7fyBxw9syu/tlS7QN06jA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKZaeron5FcRd3AQZBwjqmP6iEzchMjzZEjO5kPcvzfgIhAIuXDxwZNA2opOsmjQQDPIAwgIxCJRWW0k2uaIcNn92O"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.3.tgz_1454808212855_0.4370040809735656"},"directories":{}},"3.2.4":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.4","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"./scripts/postinstall.sh","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"14215f55ecbea8e09591e31a156d4370ff5422a2","_id":"gonzales-pe@3.2.4","_shasum":"b9a2577149043fb7cd22625149067b299ad9c1da","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"b9a2577149043fb7cd22625149067b299ad9c1da","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.4.tgz","integrity":"sha512-uhwD3HoytQxNxxRCXDR0AHj7lBLb6r8SgkrL69XH9fEESTrXSt7HrKuOxif71Dk+gez98tWHK/jF2YPkDsVV5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFMW5nIDvKIbQx/ofAKNxfuns0KxtGYg6GKMIWgbGrGSAiEAvS3GXCtHBqsH9y9EKjLsppzLTV/YHEZCqT5I1eo+BX8="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.4.tgz_1454809867703_0.05820979061536491"},"directories":{}},"3.2.5":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.5","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"./scripts/postinstall.sh","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"afdd0996e1089072d4ba1a68504b1b39a2825cfe","_id":"gonzales-pe@3.2.5","_shasum":"2e6820fb2799cb7eb305128ce6dba85fd663eeee","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"2e6820fb2799cb7eb305128ce6dba85fd663eeee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.5.tgz","integrity":"sha512-UzD1QCm3NKQriPfSByJnGtUe1o5J/cyD5FD/O8fXPOlt3/H77n/qI9WUNhJpo8GRb7ktIVMNcPWdmIwi3e79hg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtCiOuc9bW3T7vMmeJxmnyMZKYl2vT96nyAvayq9JW9QIgYYm+pB6UVO2qO8DrsnoouGyTTYek/t6sYzXd6UlwCFQ="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.5.tgz_1454813944151_0.6520222106482834"},"directories":{}},"3.2.5-dev1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.5-dev1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"pwd && ls && ./scripts/postinstall.sh","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"afdd0996e1089072d4ba1a68504b1b39a2825cfe","_id":"gonzales-pe@3.2.5-dev1","_shasum":"7bbe9c9f251e26652650bd27adba689566c50374","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"7bbe9c9f251e26652650bd27adba689566c50374","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.5-dev1.tgz","integrity":"sha512-IhI22r6kxAWOc3ozUQI3SkR190q2D0sj2YCkLpIwH10fHIzw+PiFa/N7ZtdTkoZ5RGXuBmpl862fNrSjIbf/OQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyZW3373yqJ1eOEBcZMIDuCRmIZTJ9Ik8CVj/E/kUunQIgDkv+5WwLLbqfAeGDt67sXWFD66x9entMbhz6fe6xIxM="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.5-dev1.tgz_1454845371896_0.3825396178290248"},"directories":{}},"3.2.5-dev2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.5-dev2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"if [ -e ./scripts/postinstall.sh ]; then ./scripts/postinstall.sh; fi","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"afdd0996e1089072d4ba1a68504b1b39a2825cfe","_id":"gonzales-pe@3.2.5-dev2","_shasum":"4f62099dcd2d246ad431e3ad8deb1dced6f15548","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"4f62099dcd2d246ad431e3ad8deb1dced6f15548","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.5-dev2.tgz","integrity":"sha512-QOAzfTVb46Hp3BZydPXA/4c6X7jjGerdkJKmD4wAODZAz7/ep7Y21X8jYbLpJm/lZcpAdVuRQnsc6FH6lWMsUQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIGJ26rudLR8f6nWgEhZGqqaOaSOI5KdXzrExXs9XmigIgIAi6P9HpZIagupejmAG/8sVivMahfE8JNHjPYpwXnHI="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.5-dev2.tgz_1454845591410_0.7033762405626476"},"directories":{}},"3.2.6":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.6","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postinstall":"if [ -e ./scripts/postinstall.sh ]; then ./scripts/postinstall.sh; fi","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"cfa1e7a47c2d4479a55bcc9feac31ee3ce57ce55","_id":"gonzales-pe@3.2.6","_shasum":"214f526c1e4bce50e63d7f2be5c8a89eb3977132","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"214f526c1e4bce50e63d7f2be5c8a89eb3977132","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.6.tgz","integrity":"sha512-o8hSaYOqyz5WRDgSraIjF+O/aLZopqqeV9HXsJfm50+U7RJnPL7sQCqSAV68oJKtmrwDqGA6m7QxGThpC7KMRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAnQE6+8TQtXFElytg8s0+3Q9tzJ3oaDNauNf7dOmWWzAiBKoXr6RYg3BI8dwT2lMK+Bi55/aTddRG/98VE0B/u6gw=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.6.tgz_1454845806158_0.07960355537943542"},"directories":{}},"3.2.7":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.2.7","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"./scripts/build.sh && ./scripts/autofix-tests.sh","build":"./scripts/build.sh","init":"./scripts/init.sh","log":"./scripts/log.sh","prepublish":"./scripts/prepublish.sh","postpublish":"./scripts/postpublish.sh","test":"./scripts/build.sh && ./scripts/test.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel":"^5.5.3","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","mocha":"2.2.x"},"engines":{"node":">=0.6.0"},"gitHead":"476f443bed9a0059beebf238c0b91700c9dc5e57","_id":"gonzales-pe@3.2.7","_shasum":"5a6aef206542e9fa1b2787280d4851a35e7f5abb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"5a6aef206542e9fa1b2787280d4851a35e7f5abb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.2.7.tgz","integrity":"sha512-UwsRoi98+kKQRnliUPJnY0UisxGbxaU0XGrYZu9vKDl3LrkNBbVKELhO4fbyyAJ8V2DvPik6Drtnw0X3CY5d9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD18tAhkpsFOwatMhkXTgHJWzeCM6RqFfv9NYUkWZrRJAIhALBcOW7wyszPq45oWT9bc7rYJjDM00OvmboXjaKwP3VN"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.2.7.tgz_1461871184295_0.7028172661084682"},"directories":{}},"3.3.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/build.sh && bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"d91aabe362a8f6444fc305c11ed1d1906b470284","_id":"gonzales-pe@3.3.1","_shasum":"12a7bb9d3dde525e03c6401253ffb1f9bbe61dcd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"12a7bb9d3dde525e03c6401253ffb1f9bbe61dcd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.1.tgz","integrity":"sha512-06+3hy621xEoU/5gXzoRi6eOCUudHcPrdxv7x0HtHH/3YIP8G/V+r/wWJCN45SWI0im2gPp/ZJjKn57Oeu7OyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVk1FS7pX26tnfdyS1DQr7iQtn0PEeUsu4Nkh6oTzvawIhAKiE4RGVM8P8bdL+XTNJCCtbkuxfuO0LaTiIvr8cw5zG"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.1.tgz_1461881362599_0.03789104986935854"},"directories":{}},"3.3.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"61e6ebbb4c785ca125f540ddb511cac7665b1428","_id":"gonzales-pe@3.3.2","_shasum":"20894d1609f304cc5a118e9ef738a1a3d416bf57","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"20894d1609f304cc5a118e9ef738a1a3d416bf57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.2.tgz","integrity":"sha512-ums7bceFjBxCxfQvEsG1GtLmwBoAyhV6UK4jCOPA57hZgyAynavg2O5C2lrOvBgo9D2iUEYFLLvnWkuyiQJycQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICeFZK3i4zY2yB3Z8U8g79OzwQwzNY3Ep19PrYBBe+k4AiB72H8wfY+lzUe68J+KN8OfMtux7GGjQWs7XhvEdHXw3w=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.2.tgz_1463579678004_0.8552571614272892"},"directories":{}},"3.3.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"6b70c1db103cb4a4c95503de937272d8382d6443","_id":"gonzales-pe@3.3.3","_shasum":"8d55caf52d40302c6858d37179dc6d87a5a17dc0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"8d55caf52d40302c6858d37179dc6d87a5a17dc0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.3.tgz","integrity":"sha512-U1Ws+yvvPTUaa7ZOqDNdWSXMRy5wJcH3UO2dzxkubh0npkyNL5DLlw94E+z1HVb69Ls2bhdlKUITtzTqJUXp8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZLybiG8fyge10l4me0pNn+0gDrw6OeOxymEB3kYC5oQIgYq7e0DsuB/JmFX1UybBKpysIPnxXMq0ga0oHoS7Ctms="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.3.tgz_1463580835647_0.10146295838057995"},"directories":{}},"3.3.4":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.4","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"6f64068232005ac61ae7044d08d9b8d3c8085ba5","_id":"gonzales-pe@3.3.4","_shasum":"9ae0bf916b259e37a9e54bec43faa51bcf85217e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"9ae0bf916b259e37a9e54bec43faa51bcf85217e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.4.tgz","integrity":"sha512-rTZZWJ/YUD1gsGEr423CgF00hijG7MHA+7kj8k40v/Pf2IONAf/980OQXTAZ/4gr+qeOqDJeCF+bDnYMrWwvKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDRKk3W6TnLQI7+O+Ng/fxb95k9pheR7SfhwklWQwVGuAiBaXfD2mA9ncU7hyslFeEC80GAMC1JxOFuZ2+3SGTnTGw=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.4.tgz_1463605867442_0.2234020244795829"},"directories":{}},"3.3.5":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.5","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"0a9b5f2e71804f4f0219cde1422345984adaac19","_id":"gonzales-pe@3.3.5","_shasum":"238a0406402449db647c25af220744a103469862","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"238a0406402449db647c25af220744a103469862","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.5.tgz","integrity":"sha512-Bn8+oTeU6cN8qiY5FX0t2hwx4LyK7HHnJ5+dv23PWaRc2d5/fTwJ2iE2q9qXaGOgx77TJdmRKqdSQGFB4cij+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4VhyafcdqHkh618upWLos+gS/iTf1OQHK4m4JsNBkvwIhAL/ny4hMR1gT8MKwjxq0Su3Lw7lVOWMMmtuxLfky/B3W"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.5.tgz_1466521988013_0.379840022418648"},"directories":{}},"3.3.6":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.3.6","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2"},"engines":{"node":">=0.6.0"},"gitHead":"99036b2c7e788546d4cdbf45f4cbbaa417cb51fd","_id":"gonzales-pe@3.3.6","_shasum":"1d8cab56e613e70e43f6a087d61e3690c31a08c6","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"1d8cab56e613e70e43f6a087d61e3690c31a08c6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.3.6.tgz","integrity":"sha512-LLZA7WcZ1Y18nCpkD43cbPDeK8ihlSF4dalaj/T5IT7hS+x4f/k8SAPMwoU74gNHl+I+lkA+1BdurG+BfNfnPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDZYDEwI4OqptDuSTQWw9be0jj01FvWoku+qUYATDVRXAiEA9skVgRfQ5w+X509CA8bvOwbQszQv4P/N+v1lhVQSeYg="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.3.6.tgz_1467383690697_0.08543826499953866"},"directories":{}},"3.4.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"05f8832c95049e38b3ee963705141df37926942e","_id":"gonzales-pe@3.4.0","_shasum":"47ccd524fb893d79bfa6cbf970d31b7c28515313","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"47ccd524fb893d79bfa6cbf970d31b7c28515313","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.0.tgz","integrity":"sha512-g/agNhEGUnEWU4Cf3y3Tdmf3j+XEX1mQo14z3qCs9BU/URale3ax56NXKyCR7qkbWXTpXJWKO5gRp6t0y3IANA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZSz8KmAFL7tnnkuI+AJFv8CS8RvdfYmjn4ekzvBmIKAIgXhzLndZHuV/vvtUll5pDCK1XvvzbtzI0+3V2k3ghM4U="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.0.tgz_1469618331876_0.49991785222664475"},"directories":{}},"3.4.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"f23fdbcedc5af34bb1bdb82edca00b129ecafde5","_id":"gonzales-pe@3.4.1","_shasum":"bb5512d0caf1399db7c7cdeb1d3b0b798272dcc0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"bb5512d0caf1399db7c7cdeb1d3b0b798272dcc0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.1.tgz","integrity":"sha512-VbJfObyFfw+SFwnnWle16P58lRSunouGzF7FTfBGqN4hKSRDGPocecD5bi3W+yRe+4fRyb91+6DVmCkvHd1enA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDVWUAe2CT+nXHgErsZ16FzZnrZiDimwpngz7BDI8ITdAiEA1UJnRmCcGLsCxHYE1hnixvNnvF4zEXeYCjTOBdDd7cQ="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.1.tgz_1469626112202_0.26719839964061975"},"directories":{}},"3.4.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"9bdee72605da559378becb1a2668bfd607d4a69d","_id":"gonzales-pe@3.4.2","_shasum":"1c2e4d9cc79560d5bb42de2425221e82bade1883","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"1c2e4d9cc79560d5bb42de2425221e82bade1883","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.2.tgz","integrity":"sha512-c4HSUn0Qp5ig74fBw+dTxvdZ5EragmGNcQsDuGnXyp1housiE8Nwu2rNu/W8taspyxxEq/NooI89ioXZ1f3wCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbNishl4xUz64zb9kh/9OFaj2+apChBJilvzAzKgl4GQIhAOtnHv9gteIseB3wgvVVyX4RklhDGUCmz6p0/LfPZN7P"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.2.tgz_1470318192151_0.5722793801687658"},"directories":{}},"3.4.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"1f22559596e204374a0c40d4a187bfec692312be","_id":"gonzales-pe@3.4.3","_shasum":"516d108c20b00dbd0fc19a1361208c08c3158a63","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"516d108c20b00dbd0fc19a1361208c08c3158a63","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.3.tgz","integrity":"sha512-HQvNofwTnFaC1gPZc6toweNgRUkeoO8FCsyaYJrgQTUlGr3jo84LplDkK2RBF75tWaAceIzOZrgiTKRApwU//A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNFCMYzq2Da6372DeoVYlXB+yz5tCbbC8dMceDtpUK8wIgXlMQ6zKbPQ7Na5w+CFlpXIf5cgBQbNe+Ym3hVieEUtY="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.3.tgz_1470673445682_0.5744078923016787"},"directories":{}},"3.4.4":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.4","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"c648e8934b0af799b8165d035f04b0a5830a170b","_id":"gonzales-pe@3.4.4","_shasum":"ffa05b82c96342b0460b489b2a0facae17f13430","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"ffa05b82c96342b0460b489b2a0facae17f13430","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.4.tgz","integrity":"sha512-X6pNqQpbvrgwYWDrf7RsrYjdfc/HY1uoCdE3c8oiP38iL5c7zfq59zjdG43WeLKxizjpNB6sjGPeD0GqHbgAqA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAKSQbmL/1QzGo5ME3xaBuocMk22rmI2qerdi5iTEt+eAiEAiSly4V5To8ntD8baaPIZZMMJsOLJTCPX3f7Qu/7/CMw="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.4.tgz_1470997115004_0.35228460491634905"},"directories":{}},"3.4.5":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.5","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"d30d6c3893ce07cbbf209b76d08d9de023629435","_id":"gonzales-pe@3.4.5","_shasum":"428d9140405eaa70fa85944072b9a1cbf8236c63","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"428d9140405eaa70fa85944072b9a1cbf8236c63","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.5.tgz","integrity":"sha512-AFWpvKxHNWCoHcw/YwP4nndYhF8vLFDEK6MzsmNC7uvMYRk3dbIPdR1odPeOL44kn8WbA9q5QQ+fsBXyUihGnw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6Z7BOLiAUO0HnmkaEV1D9l4VWRtoYQuiP054rJ2FNVQIgL46OnbMEkac/SwuVfiZ6D2e75KFmQ+yYkLY7b6NupjE="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.5.tgz_1476957323574_0.335412226151675"},"directories":{}},"3.4.6":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.6","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"0e41751528afeec7ff43126a3c987708b5837b97","_id":"gonzales-pe@3.4.6","_shasum":"22921dfcd9ade438e68d21f36bfca59ca63c36ae","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"22921dfcd9ade438e68d21f36bfca59ca63c36ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.6.tgz","integrity":"sha512-/OZNEupgeHKpxcWsZ5t+NDfyrbP8uyV4N7bBC2UzBi89u9q2FjAeyAEMvwJ59H6Y1Fl+P1U1UBa2stcj41MJBg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEdCtCt7He2zri02WFt6IDiW8hA4AuaRcVVY8F2BySUgIhAIjr7nnUcCYbb5Nvt03aNp0OYBuGRETGOJ6fEgyPjDz1"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.6.tgz_1477169341351_0.5155083776917309"},"directories":{}},"3.4.7":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"3.4.7","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-loader":"^5.3.2","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"cad610ef9c7deb510d5edc87141e1788766a273b","_id":"gonzales-pe@3.4.7","_shasum":"17c7be67ad6caff6277a3e387ac736e983d280ec","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"17c7be67ad6caff6277a3e387ac736e983d280ec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-3.4.7.tgz","integrity":"sha512-Ne+fRUiNEehz6wYltvzWSBfQNXfu6KAkevQnzk4SOoQIT1JTQRNjx/CthCT83u3ntZROEE5ObN6LSaOcDcYlig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA46QMZF8bnCet8IW9HZrn+P1DS8uqIF3wwmYNbKNQIpAiA2zxuSOcMvZDb9cIvTARzwG9S3uXDIBXTUFLUOUHoj0A=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-3.4.7.tgz_1477171735581_0.0522250987123698"},"directories":{}},"4.0.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.0.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","postinstall":"bash ./scripts/postinstall.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"75c3f3eb2892e73c588a3f1a1498b740b9b09de5","_id":"gonzales-pe@4.0.0","_shasum":"304a216611d65296e1b60d26ab3d7ca858a5b1b4","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"304a216611d65296e1b60d26ab3d7ca858a5b1b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.0.0.tgz","integrity":"sha512-LaDdQyUZt8CqjAZC2r75khnlf0UI7gl8i3KM9LTQ9xBEgSysmzhgaLagtjwkrPwxjtFsGw77WvJG/rZ7Uc/ESg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3j9RNwLOaLur+RaSEolABqyTjfbYUFYDTO3obtQwO1wIhAMO1p9+Y8kpOXz/s4hJMKH+yT0WZLYK0kzHR2HalbCil"}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gonzales-pe-4.0.0.tgz_1479407692947_0.7746319388970733"},"directories":{}},"4.0.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.0.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"ce8d9a07ebe1c419aca31ee5da8e57c3d0ce0ad0","_id":"gonzales-pe@4.0.1","_shasum":"3db28798cddbc4e597d0abb101eb7befcfe6f310","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"3db28798cddbc4e597d0abb101eb7befcfe6f310","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.0.1.tgz","integrity":"sha512-8+BilV8Kckog1sIu6s7HLzs99Uo6uvduxaQYmrIekhQcYlte7fkuAkAN2J/YV2seo+TC3jo653+gfeAi++Y5fw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEc8kKFnRfK75J0buJllA+uX066JEhwwBZej+wvaqN21AiByq9WIvUBmm3p8JC4WjQqo8VBJYUdNl0Kt5MV5GBcU/g=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-4.0.1.tgz_1479452687597_0.507879761280492"},"directories":{}},"4.0.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.0.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"95afa4e34c9ca22611fa1cabac9a83898e747ef8","_id":"gonzales-pe@4.0.2","_shasum":"34e532f40d727bf12c172a02366bad7fb2a09e87","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"34e532f40d727bf12c172a02366bad7fb2a09e87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.0.2.tgz","integrity":"sha512-BSka9aBU8RX9oXLsBt5dNwpyTtbGnsdItpoxj4e44l022vtCkpfRQnYySTDYDy+tfl5r5rbV8bcXEh+b7ACmDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGAn9kwOGKb+2BgGLN6crM/Hp9/DPVWF4eawOAHHAzIdAiAWAYl4gDPMcXXVaugnM42FMmDXydBv6w1i2PwWMXfScQ=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-4.0.2.tgz_1479457842318_0.659981437260285"},"directories":{}},"4.0.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.0.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"3454de4e1dd8a220ef1d4c8b1fbe154d12567650","_id":"gonzales-pe@4.0.3","_shasum":"36148e18e267184fbfdc929af28f29ad9fbf9746","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"shasum":"36148e18e267184fbfdc929af28f29ad9fbf9746","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.0.3.tgz","integrity":"sha512-7hvH//4g//I0J0uJDM/iztLAwX1ZrHq11VgvwrH0SogmEvDJvH30Wx20mbpgXd4dbj+gdQtsuA2e0BI2j9em2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGYV5Y27auc3YNoJuJXRVgGgndi5jogzlHnPq37AdoLWAiAiVlyEm/kXT54Hv5ah8IxjkD+KXUnE1YaGlpoBo68N2A=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/gonzales-pe-4.0.3.tgz_1479649097405_0.8446950509678572"},"directories":{}},"4.1.1":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.1.1","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"668fa63c93b1b1afc9b3d3943704c6a3c1878bc7","_id":"gonzales-pe@4.1.1","_npmVersion":"5.3.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"integrity":"sha512-hRH6zyWfc6vlKCMeARHMPwFypXHptgvONVQG7JanHI7UFYRQzBZHS0kLIkOa7u91KUZKP/otAeBN+uvA0s/DzQ==","shasum":"3a280c1c01b06515784878038dedb900a6585bb2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB5AzesGQ7cgNU6kRam8YGWCf1ko92AIF8AtB8ZPWSffAiAq/5Gvbps9AYRjqx4derNURUiZZZch4QmTTt0WO2z+KQ=="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gonzales-pe-4.1.1.tgz_1503568036868_0.007115909829735756"},"directories":{}},"4.2.2":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.2.2","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublish":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"87d90c7f8942a219c673cb2a4be260fde7f162fc","_id":"gonzales-pe@4.2.2","_npmVersion":"5.3.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"integrity":"sha512-jbQFnd6CD3iEuGtSKVhsh37tQIkkx+/eil3tufyYOHMouG89uqtkWGP03P4vxY+XGeJnCi3ewIY+BnBogyC61Q==","shasum":"f50a8c17842f13a9007909b7cb32188266e4d74c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.2.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBq2s1wX2nIPdCQ6UBFtv8Dgvp3kgvtxaFtyE4t+HbGAiEAt6z/e31yMEq+KHZNB6qNoKQ5YMqmurfUwgxLEk3uDgw="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gonzales-pe-4.2.2.tgz_1504082013798_0.6571834797505289"},"directories":{}},"4.2.3":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.2.3","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublishOnly":"bash ./scripts/prepublish.sh","postpublish":"bash ./scripts/postpublish.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.8.0","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"80a0fa27afbd905f89e75ee9c305686d5c2fac57","_id":"gonzales-pe@4.2.3","_npmVersion":"5.4.1","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"dist":{"integrity":"sha512-Kjhohco0esHQnOiqqdJeNz/5fyPkOMD/d6XVjwTAoPGUFh0mCollPUTUTa2OZy4dYNAqlPIQdTiNzJTWdd9Htw==","shasum":"41091703625433285e0aee3aa47829fc1fbeb6f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPdzPuND/IHggBj+CKR83yuvyrSu+5qtmTNpZcgXtynQIgM679mhPCVcYebUXxzO2Hszi+HnUSfl3AIsb/PaH96T8="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gonzales-pe-4.2.3.tgz_1509472696209_0.2974901213310659"},"directories":{}},"4.2.4":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.2.4","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublishOnly":"bash ./scripts/build.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"./bin/gonzales.js"},"dependencies":{"minimist":"1.1.x"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.10.2","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"4c03cf9b3945ea1dd2486fa13ddf4b2d5450f3f0","_id":"gonzales-pe@4.2.4","_nodeVersion":"11.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-v0Ts/8IsSbh9n1OJRnSfa7Nlxi4AkXIsWB6vPept8FDbL4bXn3FNuxjYtO/nmBGu7GDkL9MFeGebeSu6l55EPQ==","shasum":"356ae36a312c46fe0f1026dd6cb539039f8500d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.2.4.tgz","fileCount":6,"unpackedSize":598847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclVF5CRA9TVsSAnZWagAAXzQP/im5lvSWRt6xsqZmB90f\nDZ78l9/2MSqmowHHJxe3kQU18KqoPfOPhpWzLqzsh3gQjUfKcrAt1r6f5+nm\nukT62HkQVWo3XxpoK5T15JyuxQf05H+mA8497QIOEhR9pHHGnVCQTwtotTaV\n+FAS9WQHUixQV5ZyWlm2nLGnUCJnFrssgkVmh6B3j9UcdgSIn1EWr+QUpEF+\nKQwXn2BP6j1Be/5F6I9365DoZ1Htdzb6SXyfFvVt9yRQCMISC1XkYfCvxAK0\nN680RzKhmVkO3j3Iw+OyxKZeHgH/8+mapXP9LboY55YexAIJfPUJBCNRRxIE\n1olMbVzQrZaS7bNHIqHQob0WWqbx32SjvZjnYnkWdwAz2DT+3XYZQFMyR4G1\nod2I0BX0Ifrn5EbNSwfz9JV0zKIOGOlB5JGPmN7200h4prPryRXXvGbs4VsJ\n6EMbfDWEectkwQH2H3xUNXTHnZaaMvEYHNjBkMwwFkM7aj4t9h6pgz2FdKjM\npMioLE/W1j2QX6f8eS4oLYZFVepHthvwojwrzDo5DQMDBRPBXYy/peqIlsjY\n6XcQ23rQB8De2vdr/3ufyP2wVW3XxrB2aBNwDXbgCYcQ2TIay+HvmISgnynB\nri9+x7Xr6sUrwxc2c1jJpYB9By2ZoTUY1mEsfckMqfZpNK39nmUXx9tUh2p5\nubYM\r\n=XxHh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/P08+blTY26tO59C0bJsbcdSgEfbKPFMR0KfKjyfPRQIgRXqd4Fg5396h28japtJTVOc+3a3mZR82o+2X4Rmdeac="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmUser":{"name":"anonymous","email":"john.david.dalton@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gonzales-pe_4.2.4_1553289592558_0.9070717971641962"},"_hasShrinkwrap":false},"4.3.0":{"name":"gonzales-pe","description":"Gonzales Preprocessor Edition (fast CSS parser)","version":"4.3.0","homepage":"http://github.com/tonyganch/gonzales-pe","bugs":{"url":"http://github.com/tonyganch/gonzales-pe/issues"},"license":"MIT","author":{"name":"Tony Ganch","email":"tonyganch+github@gmail.com","url":"http://tonyganch.com"},"main":"./lib/gonzales","repository":{"type":"git","url":"git+ssh://git@github.com/tonyganch/gonzales-pe.git"},"scripts":{"autofix-tests":"bash ./scripts/build.sh && bash ./scripts/autofix-tests.sh","build":"bash ./scripts/build.sh","init":"bash ./scripts/init.sh","lint":"bash ./scripts/lint.sh","log":"bash ./scripts/log.sh","prepublishOnly":"bash ./scripts/build.sh","test":"bash ./scripts/test.sh","watch":"bash ./scripts/watch.sh"},"bin":{"gonzales":"bin/gonzales.js"},"dependencies":{"minimist":"^1.2.5"},"devDependencies":{"babel-core":"^6.18.2","babel-loader":"^6.2.7","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.18.0","coffee-script":"~1.7.1","eslint":"^3.0.0","jscs":"2.1.0","jshint":"2.10.2","json-loader":"^0.5.3","mocha":"2.2.x","webpack":"^1.12.2","webpack-closure-compiler":"^2.0.2"},"engines":{"node":">=0.6.0"},"gitHead":"ab2e8ae6142d6fa95b77864f608a8add8abffaec","_id":"gonzales-pe@4.3.0","_nodeVersion":"13.12.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==","shasum":"fe9dec5f3c557eead09ff868c65826be54d067b3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/gonzales-pe/-/gonzales-pe-4.3.0.tgz","fileCount":6,"unpackedSize":599103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeggIHCRA9TVsSAnZWagAAq20P/1LPhMd9znGxLc3UqQTc\neeVfxAngnnGwsWpKpU8Gm2xBkpAC8vGwL7DpcRjCcEUq1v57SjFlYFEvKUg5\nOFekK9kgNnWu8n9nkPYt8DLspnAn6MYs9ZHGB8YJkOxIpxV01b5UZGp22CaR\nNu7xcY2TMlIuFFcxFq4OlK+/HRdBeEB8+ceFxa/iLiCvjEpjBIqabSHqxIA2\nbS/WsfRITSiOMi7MrFWSNJ8jujWZuFY0dYddHZFOTj2qjbFdEC3X1vVl6E+j\nVlZ/xY+u0xKflV462tJk5ub2cs9SKO2+VkmsAxnoq4mXOTYLH4aOjfpDs4H9\njjKitBciTGmHjUSOv/4kEPyfAZiQUshIiVnk7WPgvBKFhB+dS+g7K4wacSx6\nobheK9+Y3ZH5OJBaRxo4/eEDWe0B2ZhAtqJ8H2jWrtD0UZa1rNMm+4KCF7zF\nTjWYeHBWYA/FS6rVSri8XZRIHzcbDsrz14HXLPfwWic7aS4boqrDmqm/pOeC\nzqsEGAGGpR+JPGjnPJx4UuI32G/ZPaTFvINDEgVxTChN/MeZXpqByo4KZ/9n\niq5iQWISOYWfmercamVeEO37SNEw5nJ9hrpR0i9ZG42INfB9sxaeq9pTByMX\nFRU86Erh1czBgYhsCJw+e8A3OV5yO62Wji78axpvYAgh33A7tRdXlg0NS5Y6\n49EI\r\n=8/9f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHYvsQVLmVlSHixSFks7wFsaU2nGKVcN0x7PPWgjlX4wIgRRsBnrdyui5l3gIIrtEcC0axgRVKpo/CbHdPZJprgxE="}]},"maintainers":[{"name":"anonymous","email":"tonyganch@gmail.com"}],"_npmUser":{"name":"anonymous","email":"tonyganch+github@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gonzales-pe_4.3.0_1585578503457_0.2723165649129369"},"_hasShrinkwrap":false}},"name":"gonzales-pe","time":{"modified":"2022-06-18T13:20:15.272Z","created":"2013-10-13T13:17:06.069Z","2.0.0-alpha":"2013-10-13T13:17:08.382Z","2.0.0-beta":"2013-10-15T17:54:30.292Z","2.0.0-beta2":"2013-10-15T18:54:19.489Z","2.0.0-beta3":"2013-10-20T10:55:11.604Z","2.0.0-rc0":"2013-10-26T13:53:28.817Z","2.0.0-rc1":"2013-11-02T14:02:16.973Z","2.0.0":"2013-11-10T22:56:54.522Z","2.0.1":"2013-11-18T11:00:00.946Z","2.0.2":"2013-12-28T22:25:33.341Z","3.0.0-1":"2014-04-09T11:51:23.609Z","3.0.0-2":"2014-04-09T13:17:19.930Z","3.0.0-3":"2014-04-09T14:22:15.969Z","3.0.0-4":"2014-04-10T21:48:23.663Z","3.0.0-5":"2014-06-09T14:13:14.494Z","3.0.0-6":"2014-07-02T16:07:10.160Z","3.0.0-7":"2014-07-05T16:06:00.352Z","3.0.0-8":"2014-07-05T17:56:40.310Z","3.0.0-9":"2014-07-08T16:06:04.109Z","3.0.0-10":"2014-07-18T16:21:45.997Z","3.0.0-11":"2014-11-15T10:47:49.868Z","3.0.0-12":"2014-11-27T15:49:28.024Z","3.0.0-13":"2015-01-22T13:00:18.805Z","3.0.0-14":"2015-01-31T17:26:43.643Z","3.0.0-15":"2015-01-31T18:09:09.546Z","3.0.0-16":"2015-01-31T18:17:58.868Z","3.0.0-17":"2015-01-31T20:34:17.596Z","3.0.0-18":"2015-02-01T12:15:08.396Z","3.0.0-19":"2015-02-02T07:32:27.451Z","3.0.0-20":"2015-02-02T08:28:58.616Z","3.0.0-21":"2015-02-02T10:10:41.712Z","3.0.0-22":"2015-02-02T11:12:52.093Z","3.0.0-23":"2015-02-02T11:33:57.669Z","3.0.0-24":"2015-02-02T11:35:46.563Z","3.0.0-25":"2015-02-02T15:57:59.231Z","3.0.0-26":"2015-02-02T16:19:19.894Z","3.0.0-27":"2015-05-12T20:03:44.581Z","3.0.0-28":"2015-05-19T09:27:13.157Z","3.0.0-29":"2015-05-27T08:10:44.621Z","3.0.0-30":"2015-06-05T23:54:41.368Z","3.0.0-31":"2015-06-19T22:45:17.535Z","3.0.0-beta":"2015-10-04T23:08:59.348Z","3.0.0":"2015-10-18T00:35:46.733Z","3.0.1":"2015-10-18T01:10:39.142Z","3.0.2":"2015-10-18T01:54:20.891Z","3.0.3":"2015-10-18T09:50:26.936Z","3.1.0":"2015-10-18T13:33:34.149Z","3.1.1":"2015-10-19T18:32:45.260Z","3.2.0":"2015-10-19T19:53:24.819Z","3.2.1":"2015-10-19T20:40:18.552Z","3.2.2":"2016-01-17T16:04:02.748Z","3.2.3":"2016-02-07T01:23:33.988Z","3.2.4":"2016-02-07T01:51:10.322Z","3.2.5":"2016-02-07T02:59:05.723Z","3.2.5-dev1":"2016-02-07T11:42:53.050Z","3.2.5-dev2":"2016-02-07T11:46:34.429Z","3.2.6":"2016-02-07T11:50:07.332Z","3.2.7":"2016-04-28T19:19:45.525Z","3.3.1":"2016-04-28T22:09:25.363Z","3.3.2":"2016-05-18T13:54:40.838Z","3.3.3":"2016-05-18T14:13:58.420Z","3.3.4":"2016-05-18T21:11:10.672Z","3.3.5":"2016-06-21T15:13:09.641Z","3.3.6":"2016-07-01T14:34:53.433Z","3.4.0":"2016-07-27T11:18:53.926Z","3.4.1":"2016-07-27T13:28:34.922Z","3.4.2":"2016-08-04T13:43:13.828Z","3.4.3":"2016-08-08T16:24:08.562Z","3.4.4":"2016-08-12T10:18:36.643Z","3.4.5":"2016-10-20T09:55:24.317Z","3.4.6":"2016-10-22T20:49:02.775Z","3.4.7":"2016-10-22T21:28:57.007Z","4.0.0":"2016-11-17T18:34:55.271Z","4.0.1":"2016-11-18T07:04:48.292Z","4.0.2":"2016-11-18T08:30:43.108Z","4.0.3":"2016-11-20T13:38:18.086Z","4.1.0":"2017-08-24T09:40:49.919Z","4.1.1":"2017-08-24T09:47:18.778Z","4.2.2":"2017-08-30T08:33:35.163Z","4.2.3":"2017-10-31T17:58:17.467Z","4.2.4":"2019-03-22T21:19:52.714Z","4.3.0":"2020-03-30T14:28:23.575Z"},"readmeFilename":"README.md","homepage":"http://github.com/tonyganch/gonzales-pe"}