{"maintainers":[{"email":"shtylman@gmail.com","name":"defunctzombie"},{"email":"jonathanrichardong@gmail.com","name":"jongleberry"},{"email":"hello@blakeembrey.com","name":"blakeembrey"},{"email":"jonathanrichardong@gmail.com","name":"jonathanong"},{"email":"doug@somethingdoug.com","name":"dougwilson"}],"keywords":["express","regexp","route","routing"],"dist-tags":{"latest":"1.7.0"},"description":"Express style path to RegExp utility","readme":"# Path-to-RegExp\n\n> Turn an Express-style path string such as `/user/:name` into a regular expression.\n\n[![NPM version][npm-image]][npm-url]\n[![Build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![Dependency Status][david-image]][david-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n## Installation\n\n```\nnpm install path-to-regexp --save\n```\n\n## Usage\n\n```javascript\nvar pathToRegexp = require('path-to-regexp')\n\n// pathToRegexp(path, keys, options)\n// pathToRegexp.parse(path)\n// pathToRegexp.compile(path)\n```\n\n- **path** An Express-style string, an array of strings, or a regular expression.\n- **keys** An array to be populated with the keys found in the path.\n- **options**\n  - **sensitive** When `true` the route will be case sensitive. (default: `false`)\n  - **strict** When `false` the trailing slash is optional. (default: `false`)\n  - **end** When `false` the path will match at the beginning. (default: `true`)\n  - **delimiter** Set the default delimiter for repeat parameters. (default: `'/'`)\n\n```javascript\nvar keys = []\nvar re = pathToRegexp('/foo/:bar', keys)\n// re = /^\\/foo\\/([^\\/]+?)\\/?$/i\n// keys = [{ name: 'bar', prefix: '/', delimiter: '/', optional: false, repeat: false, pattern: '[^\\\\/]+?' }]\n```\n\n**Please note:** The `RegExp` returned by `path-to-regexp` is intended for use with pathnames or hostnames. It can not handle the query strings or fragments of a URL.\n\n### Parameters\n\nThe path string can be used to define parameters and populate the keys.\n\n#### Named Parameters\n\nNamed parameters are defined by prefixing a colon to the parameter name (`:foo`). By default, the parameter will match until the following path segment.\n\n```js\nvar re = pathToRegexp('/:foo/:bar', keys)\n// keys = [{ name: 'foo', prefix: '/', ... }, { name: 'bar', prefix: '/', ... }]\n\nre.exec('/test/route')\n//=> ['/test/route', 'test', 'route']\n```\n\n**Please note:** Named parameters must be made up of \"word characters\" (`[A-Za-z0-9_]`).\n\n```js\nvar re = pathToRegexp('/(apple-)?icon-:res(\\\\d+).png', keys)\n// keys = [{ name: 0, prefix: '/', ... }, { name: 'res', prefix: '', ... }]\n\nre.exec('/icon-76.png')\n//=> ['/icon-76.png', undefined, '76']\n```\n\n#### Modified Parameters\n\n##### Optional\n\nParameters can be suffixed with a question mark (`?`) to make the parameter optional. This will also make the prefix optional.\n\n```js\nvar re = pathToRegexp('/:foo/:bar?', keys)\n// keys = [{ name: 'foo', ... }, { name: 'bar', delimiter: '/', optional: true, repeat: false }]\n\nre.exec('/test')\n//=> ['/test', 'test', undefined]\n\nre.exec('/test/route')\n//=> ['/test', 'test', 'route']\n```\n\n##### Zero or more\n\nParameters can be suffixed with an asterisk (`*`) to denote a zero or more parameter matches. The prefix is taken into account for each match.\n\n```js\nvar re = pathToRegexp('/:foo*', keys)\n// keys = [{ name: 'foo', delimiter: '/', optional: true, repeat: true }]\n\nre.exec('/')\n//=> ['/', undefined]\n\nre.exec('/bar/baz')\n//=> ['/bar/baz', 'bar/baz']\n```\n\n##### One or more\n\nParameters can be suffixed with a plus sign (`+`) to denote a one or more parameter matches. The prefix is taken into account for each match.\n\n```js\nvar re = pathToRegexp('/:foo+', keys)\n// keys = [{ name: 'foo', delimiter: '/', optional: false, repeat: true }]\n\nre.exec('/')\n//=> null\n\nre.exec('/bar/baz')\n//=> ['/bar/baz', 'bar/baz']\n```\n\n#### Custom Match Parameters\n\nAll parameters can be provided a custom regexp, which overrides the default (`[^\\/]+`).\n\n```js\nvar re = pathToRegexp('/:foo(\\\\d+)', keys)\n// keys = [{ name: 'foo', ... }]\n\nre.exec('/123')\n//=> ['/123', '123']\n\nre.exec('/abc')\n//=> null\n```\n\n**Please note:** Backslashes need to be escaped with another backslash in strings.\n\n#### Unnamed Parameters\n\nIt is possible to write an unnamed parameter that only consists of a matching group. It works the same as a named parameter, except it will be numerically indexed.\n\n```js\nvar re = pathToRegexp('/:foo/(.*)', keys)\n// keys = [{ name: 'foo', ... }, { name: 0, ... }]\n\nre.exec('/test/route')\n//=> ['/test/route', 'test', 'route']\n```\n\n#### Asterisk\n\nAn asterisk can be used for matching everything. It is equivalent to an unnamed matching group of `(.*)`.\n\n```js\nvar re = pathToRegexp('/foo/*', keys)\n// keys = [{ name: '0', ... }]\n\nre.exec('/foo/bar/baz')\n//=> ['/foo/bar/baz', 'bar/baz']\n```\n\n### Parse\n\nThe parse function is exposed via `pathToRegexp.parse`. This will return an array of strings and keys.\n\n```js\nvar tokens = pathToRegexp.parse('/route/:foo/(.*)')\n\nconsole.log(tokens[0])\n//=> \"/route\"\n\nconsole.log(tokens[1])\n//=> { name: 'foo', prefix: '/', delimiter: '/', optional: false, repeat: false, pattern: '[^\\\\/]+?' }\n\nconsole.log(tokens[2])\n//=> { name: 0, prefix: '/', delimiter: '/', optional: false, repeat: false, pattern: '.*' }\n```\n\n**Note:** This method only works with Express-style strings.\n\n### Compile (\"Reverse\" Path-To-RegExp)\n\nPath-To-RegExp exposes a compile function for transforming an Express-style path into a valid path.\n\n```js\nvar toPath = pathToRegexp.compile('/user/:id')\n\ntoPath({ id: 123 }) //=> \"/user/123\"\ntoPath({ id: 'café' }) //=> \"/user/caf%C3%A9\"\ntoPath({ id: '/' }) //=> \"/user/%2F\"\n\ntoPath({ id: ':' }) //=> \"/user/%3A\"\ntoPath({ id: ':' }, { pretty: true }) //=> \"/user/:\"\n\nvar toPathRepeated = pathToRegexp.compile('/:segment+')\n\ntoPathRepeated({ segment: 'foo' }) //=> \"/foo\"\ntoPathRepeated({ segment: ['a', 'b', 'c'] }) //=> \"/a/b/c\"\n\nvar toPathRegexp = pathToRegexp.compile('/user/:id(\\\\d+)')\n\ntoPathRegexp({ id: 123 }) //=> \"/user/123\"\ntoPathRegexp({ id: '123' }) //=> \"/user/123\"\ntoPathRegexp({ id: 'abc' }) //=> Throws `TypeError`.\n```\n\n**Note:** The generated function will throw on invalid input. It will do all necessary checks to ensure the generated path is valid. This method only works with strings.\n\n### Working with Tokens\n\nPath-To-RegExp exposes the two functions used internally that accept an array of tokens.\n\n* `pathToRegexp.tokensToRegExp(tokens, options)` Transform an array of tokens into a matching regular expression.\n* `pathToRegexp.tokensToFunction(tokens)` Transform an array of tokens into a path generator function.\n\n#### Token Information\n\n* `name` The name of the token (`string` for named or `number` for index)\n* `prefix` The prefix character for the segment (`/` or `.`)\n* `delimiter` The delimiter for the segment (same as prefix or `/`)\n* `optional` Indicates the token is optional (`boolean`)\n* `repeat` Indicates the token is repeated (`boolean`)\n* `partial` Indicates this token is a partial path segment (`boolean`)\n* `pattern` The RegExp used to match this token (`string`)\n* `asterisk` Indicates the token is an `*` match (`boolean`)\n\n## Compatibility with Express <= 4.x\n\nPath-To-RegExp breaks compatibility with Express <= `4.x`:\n\n* No longer a direct conversion to a RegExp with sugar on top - it's a path matcher with named and unnamed matching groups\n  * It's unlikely you previously abused this feature, it's rare and you could always use a RegExp instead\n* All matching RegExp special characters can be used in a matching group. E.g. `/:user(.*)`\n  * Other RegExp features are not support - no nested matching groups, non-capturing groups or look aheads\n* Parameters have suffixes that augment meaning - `*`, `+` and `?`. E.g. `/:user*`\n\n## TypeScript\n\nIncludes a [`.d.ts`](index.d.ts) file for TypeScript users.\n\n## Live Demo\n\nYou can see a live demo of this library in use at [express-route-tester](http://forbeslindesay.github.com/express-route-tester/).\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/path-to-regexp.svg?style=flat\n[npm-url]: https://npmjs.org/package/path-to-regexp\n[travis-image]: https://img.shields.io/travis/pillarjs/path-to-regexp.svg?style=flat\n[travis-url]: https://travis-ci.org/pillarjs/path-to-regexp\n[coveralls-image]: https://img.shields.io/coveralls/pillarjs/path-to-regexp.svg?style=flat\n[coveralls-url]: https://coveralls.io/r/pillarjs/path-to-regexp?branch=master\n[david-image]: http://img.shields.io/david/pillarjs/path-to-regexp.svg?style=flat\n[david-url]: https://david-dm.org/pillarjs/path-to-regexp\n[license-image]: http://img.shields.io/npm/l/path-to-regexp.svg?style=flat\n[license-url]: LICENSE.md\n[downloads-image]: http://img.shields.io/npm/dm/path-to-regexp.svg?style=flat\n[downloads-url]: https://npmjs.org/package/path-to-regexp\n","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"users":{"285858315":true,"fgribreau":true,"abdelhady":true,"simplyianm":true,"bruce313":true,"d4nyll":true,"cobject":true,"nex":true,"justinshea":true,"tzsiga":true,"n370":true,"keelvin":true,"boyw165":true,"qqqppp9998":true,"pandao":true,"bapinney":true,"456wyc":true,"bojand":true,"monjer":true,"curioussavage":true,"hugojosefson":true,"season19840122":true,"andyytung":true,"necinc":true,"emarcs":true,"soulchainer":true,"henrytseng":true,"lianhr12":true,"jovinbm":true,"sunkeyhub":true,"blakeembrey":true,"wangnan0610":true,"fchienvuhoang":true,"shakakira":true,"goliatone":true,"markthethomas":true,"mojaray2k":true,"zhengyaing":true,"semo100":true,"princetoad":true,"mingzhangyang":true,"danielrhayes":true,"sobear":true,"arteffeckt":true,"giussa_dan":true,"papasavva":true,"leonzhao":true,"uldis.sturms~at~audatex.co.uk":true,"thomas.li":true,"staydan":true,"quafoo":true,"heineiuo":true,"stone_breaker":true,"fxkraus":true,"jian263994241":true,"bplok20010":true,"ivan403704409":true,"tomchao":true,"zvit":true,"simonfan":true,"rocket0191":true,"usex":true,"shyling":true,"bonashen":true,"pasturn":true,"gavinning":true,"zhyq0826":true,"xinwangwang":true,"dillonace":true,"deryck":true,"leizongmin":true,"ziflex":true,"kontrax":true,"hehaiyang":true,"mfjv88":true},"bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"license":"MIT","versions":{"0.0.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.0.1","keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"_id":"path-to-regexp@0.0.1","dist":{"shasum":"2383ddd9c24c6ecf8bc9e39711e3ecb37c61c4cc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.0.1.tgz"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"0.0.2":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.0.2","keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"_id":"path-to-regexp@0.0.2","dist":{"shasum":"489feb060b314443a5494ab1da2efed2040ab24c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.0.2.tgz"},"_from":".","_npmVersion":"1.2.2","_npmUser":{"name":"tjholowaychuk","email":"tj@vision-media.ca"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"}],"directories":{}},"0.1.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.0","keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.0","dist":{"shasum":"23dd6da3e04f2a3e97ba275e7c025c918b50a46a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"}],"directories":{}},"0.1.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.1","scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"dependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.1","dist":{"shasum":"27d101134fd0fda80923cf2102bc12529841002e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.1.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"}],"directories":{}},"0.1.2":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.2","scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.2","dist":{"shasum":"9b2b151f9cc3018c9eea50ca95729e05781712b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.2.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"}],"directories":{}},"0.2.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.0","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.0","_shasum":"8ac7593477f8c321dc5a2aefffcc28e74cdf9c82","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"}],"dist":{"shasum":"8ac7593477f8c321dc5a2aefffcc28e74cdf9c82","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.1","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.1","_shasum":"d7e13bfc1ff9082d6723a27b54b7ae6bccbe80e3","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"}],"dist":{"shasum":"d7e13bfc1ff9082d6723a27b54b7ae6bccbe80e3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.1.tgz"},"directories":{}},"0.1.3":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.3","scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.3","_shasum":"21b9ab82274279de25b156ea08fd12ca51b8aecb","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"}],"dist":{"shasum":"21b9ab82274279de25b156ea08fd12ca51b8aecb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.3.tgz"},"directories":{}},"0.2.2":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.2","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.2","_shasum":"605fcb541f6ae51fdd0643e00e0f1453fb56c1ef","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"}],"dist":{"shasum":"605fcb541f6ae51fdd0643e00e0f1453fb56c1ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.3","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.3","_shasum":"b695cd2d139d3b502ede11fdaf5326c05b48fd04","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"}],"dist":{"shasum":"b695cd2d139d3b502ede11fdaf5326c05b48fd04","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.4","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"gitHead":"877ca4b845d2112150900ed4926e6dca5951613a","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.4","_shasum":"5a56488dae6f4ddabc401729a79e3bb829db9dc0","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"}],"dist":{"shasum":"5a56488dae6f4ddabc401729a79e3bb829db9dc0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.2.5","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.2.6","mocha":"~1.18.2"},"gitHead":"fad140982d9baddfcf398bf7ded44b7cdbb7cf8b","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.2.5","_shasum":"0b426991e387fc4c675de23557f358715eb66fb0","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"}],"dist":{"shasum":"0b426991e387fc4c675de23557f358715eb66fb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.2.5.tgz"},"directories":{}},"1.0.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.0.0","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"^0.3.0","mocha":"^1.21.4"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@1.0.0","_shasum":"6fc04df3f802bcb3e76ef65ec75de2aae38f4a26","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"}],"dist":{"shasum":"6fc04df3f802bcb3e76ef65ec75de2aae38f4a26","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.0.1","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.3.0","mocha":"~1.21.4"},"bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"_id":"path-to-regexp@1.0.1","dist":{"shasum":"0b87a97d09ed6c301508e710272852b24360c8b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.0.1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"}],"directories":{}},"1.0.2":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.0.2","scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.3.0","mocha":"~1.21.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"59cb06498efcba7f7b73608fe675ccc663b660f2","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.0.2","_shasum":"293be955eabc0504906e0f9e129dde8ac111a21f","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"hughsk","email":"hughskennedy@gmail.com"}],"dist":{"shasum":"293be955eabc0504906e0f9e129dde8ac111a21f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.0.3","files":["index.js","LICENSE"],"scripts":{"test":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"istanbul":"~0.3.0","mocha":"~1.21.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"a76d908bf45b1534f10701bc5ba0f40567097274","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.0.3","_shasum":"eea5a32cf82b7141d4987bfe7e0557990e2d260e","_from":".","_npmVersion":"2.1.17","_nodeVersion":"0.11.14","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"hughsk","email":"hughskennedy@gmail.com"}],"dist":{"shasum":"eea5a32cf82b7141d4987bfe7e0557990e2d260e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.0.3.tgz"},"directories":{}},"0.1.4":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.4","files":["index.js","LICENSE"],"scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"gitHead":"66f8d3f63541b176a7aadbe69e0cd9f78fe206ce","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.4","_shasum":"65868166d96fd548de3bbe7dc8e8ab694a8bda57","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"shtylman","email":"shtylman@gmail.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"hughsk","email":"hughskennedy@gmail.com"}],"dist":{"shasum":"65868166d96fd548de3bbe7dc8e8ab694a8bda57","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.5","files":["index.js","LICENSE"],"scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"gitHead":"fa40b5f34d507a7afdef9dc8ae78f847801e05a2","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.5","_shasum":"a81f223d192e0cc6a92ef619633cae1fede52c5d","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"a81f223d192e0cc6a92ef619633cae1fede52c5d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.5.tgz"},"directories":{}},"1.1.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.1.0","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha -R spec --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","pre-commit":"~1.0.5","standard":"~3.7.3"},"dependencies":{"isarray":"0.0.1"},"gitHead":"c368dc9a90ee0e5b8cafb9f8f25d7c86dc8bca16","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.1.0","_shasum":"40c5a8aed1298e44e097b8dcbd2d2697b83d89e8","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.8.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"40c5a8aed1298e44e097b8dcbd2d2697b83d89e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.1.1","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha -R spec --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","pre-commit":"~1.0.5","standard":"~3.7.3"},"dependencies":{"isarray":"0.0.1"},"gitHead":"5ff1028cca4fc7440bf56f44451052ba67c215ca","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.1.1","_shasum":"8dd70fdecb4da27858aee1e5e3b6f0eda8f45a35","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"8dd70fdecb4da27858aee1e5e3b6f0eda8f45a35","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.1.1.tgz"},"directories":{}},"1.2.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.2.0","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha -R spec --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","pre-commit":"~1.0.5","standard":"~3.7.3"},"dependencies":{"isarray":"0.0.1"},"gitHead":"7aff887e73ee8bca5cc98ee6239616da07eb8523","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.2.0","_shasum":"81da890cb13bacc657670e0cfeecc90fd703b387","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"81da890cb13bacc657670e0cfeecc90fd703b387","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.2.0.tgz"},"directories":{}},"0.1.6":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.6","files":["index.js","LICENSE"],"scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"gitHead":"41abe347ea83b203a711856df51c50a51deb03a2","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp","_id":"path-to-regexp@0.1.6","_shasum":"f01fd5734047b6bfbc5f208c6135a33d7af09c36","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"f01fd5734047b6bfbc5f208c6135a33d7af09c36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.6.tgz"},"directories":{}},"0.1.7":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"0.1.7","files":["index.js","LICENSE"],"scripts":{"test":"istanbul cover _mocha -- -R spec"},"keywords":["express","regexp"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/component/path-to-regexp.git"},"devDependencies":{"mocha":"^1.17.1","istanbul":"^0.2.6"},"gitHead":"039118d6c3c186d3f176c73935ca887a32a33d93","bugs":{"url":"https://github.com/component/path-to-regexp/issues"},"homepage":"https://github.com/component/path-to-regexp#readme","_id":"path-to-regexp@0.1.7","_shasum":"df604178005f522f15eb4490e7247a1bfaa67f8c","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.3.3","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"dist":{"shasum":"df604178005f522f15eb4490e7247a1bfaa67f8c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-0.1.7.tgz"},"directories":{}},"1.2.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.2.1","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha -R spec --bail","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- -R spec","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","pre-commit":"~1.0.5","standard":"~3.7.3"},"dependencies":{"isarray":"0.0.1"},"gitHead":"484d7a85329fa5f741fa7bd1d6272fbdff00448c","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.2.1","_shasum":"b33705c140234d873c8721c7b9fd8b541ed3aff9","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"b33705c140234d873c8721c7b9fd8b541ed3aff9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.2.1.tgz"},"maintainers":[{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"hughsk","email":"hughskennedy@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"yields","email":"yields@icloud.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"cristiandouce","email":"cristian@gravityonmars.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"}],"directories":{}},"1.3.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.3.0","main":"index.js","typings":"index.d.ts","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","pre-commit":"~1.0.5","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^0.6.9"},"dependencies":{"isarray":"0.0.1"},"gitHead":"b6a4dd1216e5ad6ca93944fef4987d4b96499bc1","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp","_id":"path-to-regexp@1.3.0","_shasum":"b32ddce482da48876c3e5677447b0213e694c7b8","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"b32ddce482da48876c3e5677447b0213e694c7b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.3.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.3.0.tgz_1462745824858_0.04041688865981996"},"directories":{}},"1.4.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.4.0","main":"index.js","typings":"index.d.ts","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"27d8e89b77fe9c8dc51ca66d6196cee5b7842a50","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.4.0","_shasum":"0820f32b4d2338cbbb8a12b614d20ad59457a4ef","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"0820f32b4d2338cbbb8a12b614d20ad59457a4ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.4.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.4.0.tgz_1463636268107_0.9229077105410397"},"directories":{}},"1.5.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.5.0","main":"index.js","typings":"index.d.ts","files":["index.js","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"f6e1b2a5185f932b70e1f75f24acba5caff008bb","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.5.0","_shasum":"c38e7efa3c00dda2e61f41addf74babbbdb69ca2","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"c38e7efa3c00dda2e61f41addf74babbbdb69ca2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.5.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.5.0.tgz_1463767793397_0.14544912171550095"},"directories":{}},"1.5.1":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.5.1","main":"index.js","typings":"index.d.ts","files":["index.js","index.d.ts","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"d933b45c24d79d58fc808d0580fa092b7b9300b4","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.5.1","_shasum":"625f98affdf68b3df2191b6a0fd9dc922335db53","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"625f98affdf68b3df2191b6a0fd9dc922335db53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.5.1.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.5.1.tgz_1465400064074_0.8880169179756194"},"directories":{}},"1.5.2":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.5.2","main":"index.js","typings":"index.d.ts","files":["index.js","index.d.ts","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"e2470a5ab8fd18b3c21b8d61bc1a2c4fa63b5110","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.5.2","_shasum":"97743e23874d7a85f22807535389f1e1aa12280e","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"97743e23874d7a85f22807535389f1e1aa12280e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.5.2.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.5.2.tgz_1466042132651_0.36399424890987575"},"directories":{}},"1.5.3":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.5.3","main":"index.js","typings":"index.d.ts","files":["index.js","index.d.ts","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"7bbe1ba23ded0848b1d10bcab7504a127359a014","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.5.3","_shasum":"7221ddd42483538bddf9fead942a79ff3164f57a","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"7221ddd42483538bddf9fead942a79ff3164f57a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.5.3.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.5.3.tgz_1466048195033_0.6013146284967661"},"directories":{}},"1.6.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.6.0","main":"index.js","typings":"index.d.ts","files":["index.js","index.d.ts","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"bdf17de3dfcf62b410e7cab15998c6e32361c7f9","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.6.0","_shasum":"4c59cfeab5e360a2657b180730a4bb4582ecec5b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"4c59cfeab5e360a2657b180730a4bb4582ecec5b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.6.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.6.0.tgz_1475519937646_0.46747635514475405"},"directories":{}},"1.7.0":{"name":"path-to-regexp","description":"Express style path to RegExp utility","version":"1.7.0","main":"index.js","typings":"index.d.ts","files":["index.js","index.d.ts","LICENSE"],"scripts":{"lint":"standard","test-spec":"mocha --require ts-node/register -R spec --bail test.ts","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --require ts-node/register -R spec test.ts","prepublish":"typings install","test":"npm run lint && npm run test-cov"},"keywords":["express","regexp","route","routing"],"component":{"scripts":{"path-to-regexp":"index.js"}},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/pillarjs/path-to-regexp.git"},"devDependencies":{"chai":"^2.3.0","istanbul":"~0.3.0","mocha":"~2.2.4","standard":"~3.7.3","ts-node":"^0.5.5","typescript":"^1.8.7","typings":"^1.0.4"},"dependencies":{"isarray":"0.0.1"},"gitHead":"a99ec3c149e8c1d91fa533aa54d3ee7e34449bb3","bugs":{"url":"https://github.com/pillarjs/path-to-regexp/issues"},"homepage":"https://github.com/pillarjs/path-to-regexp#readme","_id":"path-to-regexp@1.7.0","_shasum":"59fde0f435badacba103a84e9d3bc64e96b9937d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"blakeembrey","email":"hello@blakeembrey.com"},"dist":{"shasum":"59fde0f435badacba103a84e9d3bc64e96b9937d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/path-to-regexp/-/path-to-regexp-1.7.0.tgz"},"maintainers":[{"name":"amasad","email":"amjad.masad@gmail.com"},{"name":"anthonyshort","email":"antshort@gmail.com"},{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"calvinfo","email":"calvin@calv.info"},{"name":"clintwood","email":"clint@anotherway.co.za"},{"name":"coreh","email":"thecoreh@gmail.com"},{"name":"cristiandouce","email":"cristiandouce@gmail.com"},{"name":"defunctzombie","email":"shtylman@gmail.com"},{"name":"dfcreative","email":"df.creative@gmail.com"},{"name":"dominicbarnes","email":"dominic@dbarnes.info"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"ianstormtaylor","email":"ian@ianstormtaylor.com"},{"name":"jonathanong","email":"jonathanrichardong@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"kelonye","email":"kelonyemitchel@gmail.com"},{"name":"mattmueller","email":"mattmuelle@gmail.com"},{"name":"nami-doc","email":"vendethiel@hotmail.fr"},{"name":"queckezz","email":"fabian.eichenberger@gmail.com"},{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"retrofox","email":"rdsuarez@gmail.com"},{"name":"stagas","email":"gstagas@gmail.com"},{"name":"stephenmathieson","email":"me@stephenmathieson.com"},{"name":"swatinem","email":"arpad.borsos@googlemail.com"},{"name":"thehydroimpulse","email":"dnfagnan@gmail.com"},{"name":"timaschew","email":"timaschew@gmail.com"},{"name":"timoxley","email":"secoif@gmail.com"},{"name":"tjholowaychuk","email":"tj@vision-media.ca"},{"name":"tootallnate","email":"nathan@tootallnate.net"},{"name":"trevorgerhardt","email":"trevorgerhardt@gmail.com"},{"name":"yields","email":"yields@icloud.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/path-to-regexp-1.7.0.tgz_1478630327407_0.5980636477470398"},"directories":{}}},"name":"path-to-regexp","time":{"modified":"2017-07-30T07:05:25.794Z","created":"2012-08-01T22:49:08.434Z","0.0.1":"2012-08-01T22:49:10.343Z","0.0.2":"2013-02-10T17:41:48.985Z","0.1.0":"2014-03-06T06:35:14.721Z","0.1.1":"2014-03-10T14:41:25.104Z","0.1.2":"2014-03-10T14:43:49.209Z","0.2.0":"2014-06-10T03:52:35.899Z","0.2.1":"2014-06-11T17:31:21.785Z","0.1.3":"2014-07-06T07:26:10.022Z","0.2.2":"2014-07-06T09:25:41.750Z","0.2.3":"2014-07-08T23:57:48.403Z","0.2.4":"2014-08-02T08:27:55.044Z","0.2.5":"2014-08-07T17:35:25.995Z","1.0.0":"2014-08-17T22:37:49.113Z","1.0.1":"2014-08-28T01:37:57.382Z","1.0.2":"2014-12-17T07:03:45.043Z","1.0.3":"2015-01-17T12:07:04.806Z","0.1.4":"2015-03-05T03:08:44.032Z","0.1.5":"2015-05-09T02:42:27.038Z","1.1.0":"2015-05-09T18:58:21.134Z","1.1.1":"2015-05-12T14:47:20.532Z","1.2.0":"2015-05-21T03:13:26.332Z","0.1.6":"2015-06-19T12:04:42.779Z","0.1.7":"2015-07-28T03:07:52.808Z","1.2.1":"2015-08-17T19:25:00.465Z","1.3.0":"2016-05-08T22:17:07.390Z","1.4.0":"2016-05-19T05:37:48.670Z","1.5.0":"2016-05-20T18:09:55.851Z","1.5.1":"2016-06-08T15:34:26.314Z","1.5.2":"2016-06-16T01:55:33.030Z","1.5.3":"2016-06-16T03:36:35.520Z","1.6.0":"2016-10-03T18:39:00.127Z","1.7.0":"2016-11-08T18:38:49.258Z"},"readmeFilename":"Readme.md","homepage":"https://github.com/pillarjs/path-to-regexp#readme"}