{"maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"dist-tags":{"latest":"3.0.2"},"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"description":"A port of inflection-js to node.js module","readme":"# inflection\n\nA package to transform english strings into other forms like the plural form, singular form, camelCase form, etc.\n\n<a href=\"https://www.npmjs.com/package/inflection\"><img src=\"https://img.shields.io/npm/v/inflection\" alt=\"NPM Version\" /></a>\n\n## Description\n\nThis package was originally a port of [inflection-js](http://code.google.com/p/inflection-js/), which is a port of the functionality from Ruby on Rails' Active Support Inflection classes into Javascript.\n\nNote: This library uses [Wiktionary](http://en.wiktionary.org) as its reference.\n\n## Requires\n\nCheckout `package.json` for dependencies.\n\n## Angular Support\n\nCheckout [ngInflection](https://github.com/konsumer/ngInflection) from [konsumer](https://github.com/konsumer)\n\n## Meteor Support\n\nCheckout [Meteor Inflector](https://github.com/katrotz/meteor-inflector) from [Veaceslav Cotruta](https://github.com/katrotz)\n\n## Installation\n\nInstall inflection through npm\n\n    npm install inflection\n\n## API\n\n- inflection.pluralize( str, plural );\n- inflection.singularize( str, singular );\n- inflection.inflect( str, count, singular, plural );\n- inflection.camelize( str, low_first_letter );\n- inflection.underscore( str, all_upper_case );\n- inflection.humanize( str, low_first_letter );\n- inflection.capitalize( str );\n- inflection.dasherize( str );\n- inflection.titleize( str );\n- inflection.demodulize( str );\n- inflection.tableize( str );\n- inflection.classify( str );\n- inflection.foreign_key( str, drop_id_ubar );\n- inflection.ordinalize( str );\n- inflection.transform( str, arr );\n\n## Usage\n\n> Require the module before using\n\n    const inflection = require( 'inflection' );\n\n### inflection.pluralize( str, plural );\n\nThis function adds pluralization support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> plural\n\n    type: String\n    desc: Overrides normal output with said String.(optional)\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.pluralize( 'person' ); // === 'people'\n    inflection.pluralize( 'octopus' ); // === \"octopi\"\n    inflection.pluralize( 'Hat' ); // === 'Hats'\n    inflection.pluralize( 'person', 'guys' ); // === 'guys'\n\n### inflection.singularize( str, singular );\n\nThis function adds singularization support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> singular\n\n    type: String\n    desc: Overrides normal output with said String.(optional)\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.singularize( 'people' ); // === 'person'\n    inflection.singularize( 'octopi' ); // === \"octopus\"\n    inflection.singularize( 'Hats' ); // === 'Hat'\n    inflection.singularize( 'guys', 'person' ); // === 'person'\n\n### inflection.inflect( str, count, singular, plural );\n\nThis function will pluralize or singularlize a String appropriately based on an integer value.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> count\n\n    type: Number\n    desc: The number to base pluralization off of.\n\n> singular\n\n    type: String\n    desc: Overrides normal output with said String.(optional)\n\n> plural\n\n    type: String\n    desc: Overrides normal output with said String.(optional)\n\n#### Example code\n\n    \tvar inflection = require( 'inflection' );\n\n    \tinflection.inflect( 'people', 1 ); // === 'person'\n    \tinflection.inflect( 'octopi', 1 ); // === 'octopus'\n    \tinflection.inflect( 'Hats', 1 ); // === 'Hat'\n    \tinflection.inflect( 'guys', 1 , 'person' ); // === 'person'\n    \tinflection.inflect( 'person', 2 ); // === 'people'\n    \tinflection.inflect( 'octopus', 2 ); // === 'octopi'\n    \tinflection.inflect( 'Hat', 2 ); // === 'Hats'\n    \tinflection.inflect( 'person', 2, null, 'guys' ); // === 'guys'\n\n### inflection.camelize( str, low_first_letter );\n\nThis function transforms String object from underscore to camelcase.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> low_first_letter\n\n    type: Boolean\n    desc: Default is to capitalize the first letter of the results. Passing true will lowercase it. (optional)\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.camelize( 'message_properties' ); // === 'MessageProperties'\n    inflection.camelize( 'message_properties', true ); // === 'messageProperties'\n\n### inflection.underscore( str, all_upper_case );\n\nThis function transforms String object from camelcase to underscore.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> all_upper_case\n\n    type: Boolean\n    desc: Default is to lowercase and add underscore prefix\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.underscore( 'MessageProperties' ); // === 'message_properties'\n    inflection.underscore( 'messageProperties' ); // === 'message_properties'\n    inflection.underscore( 'MP' ); // === 'm_p'\n    inflection.underscore( 'MP', true ); // === 'MP'\n\n### inflection.humanize( str, low_first_letter );\n\nThis function adds humanize support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> low_first_letter\n\n    type: Boolean\n    desc: Default is to capitalize the first letter of the results. Passing true will lowercase it. (optional)\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.humanize( 'message_properties' ); // === 'Message properties'\n    inflection.humanize( 'message_properties', true ); // === 'message properties'\n\n### inflection.capitalize( str );\n\nThis function adds capitalization support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.capitalize( 'message_properties' ); // === 'Message_properties'\n    inflection.capitalize( 'message properties', true ); // === 'Message properties'\n\n### inflection.dasherize( str );\n\nThis function replaces underscores with dashes in the string.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.dasherize( 'message_properties' ); // === 'message-properties'\n    inflection.dasherize( 'Message Properties' ); // === 'Message-Properties'\n\n### inflection.titleize( str );\n\nThis function adds titleize support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.titleize( 'message_properties' ); // === 'Message Properties'\n    inflection.titleize( 'message properties to keep' ); // === 'Message Properties to Keep'\n\n### inflection.demodulize( str );\n\nThis function adds demodulize support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.demodulize( 'Message::Bus::Properties' ); // === 'Properties'\n\n### inflection.tableize( str );\n\nThis function adds tableize support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.tableize( 'MessageBusProperty' ); // === 'message_bus_properties'\n\n### inflection.classify( str );\n\nThis function adds classification support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.classify( 'message_bus_properties' ); // === 'MessageBusProperty'\n\n### inflection.foreign_key( str, drop_id_ubar );\n\nThis function adds foreign key support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> low_first_letter\n\n    type: Boolean\n    desc: Default is to seperate id with an underbar at the end of the class name, you can pass true to skip it.(optional)\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.foreign_key( 'MessageBusProperty' ); // === 'message_bus_property_id'\n    inflection.foreign_key( 'MessageBusProperty', true ); // === 'message_bus_propertyid'\n\n### inflection.ordinalize( str );\n\nThis function adds ordinalize support to every String object.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.ordinalize( 'the 1 pitch' ); // === 'the 1st pitch'\n\n### inflection.transform( str, arr );\n\nThis function performs multiple inflection methods on a string.\n\n#### Arguments\n\n> str\n\n    type: String\n    desc: The subject string.\n\n> arr\n\n    type: Array\n    desc: An array of inflection methods.\n\n#### Example code\n\n    var inflection = require( 'inflection' );\n\n    inflection.transform( 'all job', [ 'pluralize', 'capitalize', 'dasherize' ]); // === 'All-jobs'\n\n## Credit\n\n- Ryan Schuft <ryan.schuft@gmail.com>\n- Lance Pollard <lancejpollard@gmail.com> (Browser support)\n- Dane O'Connor <dane.oconnor@gmail.com>\n- brandondewitt\n- luk3thomas\n- Marcel Klehr\n- Raymond Feng\n- Kane Cohen <kanecohen@gmail.com>\n- Gianni Chiappetta <gianni@runlevel6.org>\n- Eric Brody\n- overlookmotel\n- Patrick Mowrer\n- Greger Olsson\n- Jason Crawford <jason@jasoncrawford.org>\n- Ray Myers <ray.myers@gmail.com>\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 dreamerslab &lt;ben@dreamerslab.com&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","repository":{"type":"git","url":"git+https://github.com/dreamerslab/node.inflection.git"},"users":{"bojand":true,"d-band":true,"kastor":true,"dantman":true,"itonyyo":true,"jimkang":true,"scharfie":true,"weberliu":true,"fgribreau":true,"filmplane":true,"jonabasque":true,"dilterporto":true,"ericteng177":true,"nickeltobias":true,"tobiasnickel":true,"zhenguo.zhao":true},"bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"license":"MIT","versions":{"0.0.1":{"name":"inflection","version":"0.0.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@0.0.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"dist":{"shasum":"f9071c16f17465a2095e971982621802ce476f80","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-0.0.1.tgz","integrity":"sha512-bM4qnwBHFdxzVxWT4/PVEB44KIiSMc6QlexOfFvs5ZGlB+0YdQwOS1mfqVo5f1jQ2YBEl9paP2pOHGdpGgdYLA==","signatures":[{"sig":"MEUCIQCAAnv8XJV1JN8QrqtzcYE8Qoy6Z7Oba9ZXAw/PCGaOMAIgBBuLw0E+H/F+8Vhf1RECl6MhpI872TDLxzKWhrKJskU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.0","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.7","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.5.1","node.flow":"0.0.3"},"_engineSupported":true,"optionalDependencies":{}},"1.0.0":{"name":"inflection","version":"1.0.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.0.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"dist":{"shasum":"f177a21a371396a4f69b372c83f55f06ee32cc76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.0.0.tgz","integrity":"sha512-TKRUZsUJlKQg3RadOAJMZN2/iHKgb9xcn8RtFd/UIo5Ftp9qJ16a79m2sbAiCoOaH7ZV+3wbmUuJ8GbSty96tg==","signatures":[{"sig":"MEQCIAiBfB8fqP1nDIhtCD+JPGMiuimB+3mn3ZKZ11zz/RpgAiB9snR+1uY1CYaOyi1oZGcZw2tpJPOXD70pHAHESrk48A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.0-3","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.9","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.5.1","node.flow":"0.0.3"},"_engineSupported":true,"optionalDependencies":{}},"1.1.0":{"name":"inflection","version":"1.1.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.1.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"dist":{"shasum":"bf7b4ceba663254627b6721653b034c6be6123e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.1.0.tgz","integrity":"sha512-mMdOOQHrbEZl6+W6SzB4UcjOTQNCFAulupl7npV4usFGCvtglQBNg0hBbJ/HIQjVhiW7bLu27zVvwiBgVWG+fw==","signatures":[{"sig":"MEYCIQCG8Fi81X1qMhrBa0CZkOawhhrFbpPOfygkgJLAjEoCZgIhAKFtZOs5S2EwMmYxqbk401juDfPy8mOq1d47S7B7LVEe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.1","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.10","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.5.1","node.flow":"0.1.0"},"_engineSupported":true,"optionalDependencies":{}},"1.1.1":{"name":"inflection","version":"1.1.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.1.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"dist":{"shasum":"5e3d47d05ac2a714290d28f2fbc1b0ad67076b75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.1.1.tgz","integrity":"sha512-I7DmeMkvmGPDOYQHwhQYBrp2UhFjQ0l/EIOLTpgCBSS8C6qGCUsbUZcM+WSFlSdTXDdtnejDNDhyCEyX1/mUEg==","signatures":[{"sig":"MEUCIQC/EThazdpY/YXjcJ34AHK7LxGcViucifIFk8KVPdRsqwIgSIfdG8sHAoQhtYt6PlalnLMV0UCkezgHMbEnJuc40r4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.1","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.10","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.5.1","node.flow":"1.1.0"},"_engineSupported":true,"optionalDependencies":{}},"1.2.0":{"name":"inflection","version":"1.2.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"dist":{"shasum":"e6b5ea0be2b79593dbf57c7ccc2cca28144c91c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.0.tgz","integrity":"sha512-K2C6fcROImjujYV9hdeUxK4GE5TxIZ5b4pDClOhO+kpRQPVJUJbzUqD5y5WFBpvXbNedshVUsABWEYk6zsHdMQ==","signatures":[{"sig":"MEUCIQC9BMnLJy51zhePwXvbu3l+TjLtOZEIYzfT/uD0CHuCnAIgVUyyZ4U5aGg1atJK2/WxLRN2vPASEVebFtN7Snc0Ew4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.25","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.19","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.6.3","node.flow":"1.1.1"},"_engineSupported":true,"optionalDependencies":{}},"1.2.1":{"name":"inflection","version":"1.2.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"}],"dist":{"shasum":"6ccade7c7f39b019876af24c5ead6bc6db5e668a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.1.tgz","integrity":"sha512-o60TJz+Ra+JYy3qWXjELW7EmtecDMMggHfW49D+FA51f2P6octzFznl9685QcZTyXHElvS+Dgsy7NDAsEu6qlA==","signatures":[{"sig":"MEYCIQCDaJ5fe84urLSEp2DVIk7bWtZ/9y4PZ2YT5HhpapRBdgIhANytCwFfABwhBSVUgVA8Hb7PR97W9de4cobWIrbWTySm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"git://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.25","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"v0.6.19","dependencies":{},"_defaultsLoaded":true,"devDependencies":{"should":"0.6.3","node.flow":"1.1.1"},"_engineSupported":true,"optionalDependencies":{}},"1.2.2":{"name":"inflection","version":"1.2.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"}],"dist":{"shasum":"30acac04a47a2772e785efd66810f47c9ff157dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.2.tgz","integrity":"sha512-b7dUdJyCGQ3+1g1Hw/grku081noMJuovghWPoNyqUeAxM1fSLI4TdFDUIPCBdE1ET2ub+fBvkc+A1fL3rX68yw==","signatures":[{"sig":"MEQCIAN01/HWE4REsP458kx4MwPxnIlXS8eb+pebC0838IohAiAjBfOgo2lTfoWc0rVGg8ch2AOIMThYCB8r28ehDcqLTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"1.0.0","node.flow":"1.1.3"}},"1.2.3":{"name":"inflection","version":"1.2.3","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.3","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"}],"dist":{"shasum":"ed82e64b798277915599c6b81c02325b483aec4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.3.tgz","integrity":"sha512-uyhrt69mjgsuyoxlHsR9loOHzkXto5lLYxywqWzGxaqxK30ZAtOrUMBCqxjTMVot9G8ppOGJbLLwsUgMWnamuA==","signatures":[{"sig":"MEUCIQCYwG7498GD1OLiKrdJbPtj7tRDAIg9NSWQtXrv7qeF+wIgE1Vs/nXRoiguXe6nd2fH+Cqyowx9WvIgZ3Fud3noHp8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"1.1.0","node.flow":"1.1.3"}},"1.2.4":{"name":"inflection","version":"1.2.4","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.4","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"}],"dist":{"shasum":"ad1448a111ad8157d67c79ba798315532656bd1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.4.tgz","integrity":"sha512-po7Z3lZ+YQ7W0COGyET9rvWvRRbv+TxbS3rhfBKaVbTucwKqntz1WgGRJnagcWHHwW1CO6Pj69bgoGpDyozMYw==","signatures":[{"sig":"MEUCIBVO62xwXmOWqyuFF+amD7NCxCUZY1bjwTj/hLklueLAAiEAjemGBqzbGIrBiYjhn8OtT7sGQAIy9wW787K/kN9+JvM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.69","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"1.2.1","node.flow":"1.2.2"}},"1.2.5":{"name":"inflection","version":"1.2.5","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.5","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"dist":{"shasum":"d19e8d809ea226948ae60589ff943d7f1eb9d356","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.5.tgz","integrity":"sha512-J5hCYkJEMnhCO3R3e6YX5p5NA+v0VHVrkxdsh1pcgQ+oUiwvfYrnIPeGQqOkLe2Pxe4o38CNa7DeF+HmDqssbw==","signatures":[{"sig":"MEQCIEw7dDPsg9FHaq0lCu7MruY9lxhMQK6uBpEqLlHRbW8GAiA2qYX5zuG4HKk8PxKGWj3nT+l1/qQgrCSuzmgbIJ9MRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.1.69","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"1.2.1","node.flow":"1.2.2"}},"1.2.6":{"name":"inflection","version":"1.2.6","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.6","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"9d0771a04b0ca50c44c99f25c48c6a33ce3c4b60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.6.tgz","integrity":"sha512-Mho1qFMNNHw4HtXxmfyNzhZJrMJUTD4vw1FD+rky8wxdz3rnc+SLmMcc0zYkGqQ5TWPsSyYEMtMSDQRDbbiePw==","signatures":[{"sig":"MEQCIAYH+GF80f0JQeBGIq2o3g0SUUKsMaqTsMkjn80gJmYKAiAOAvcCY8du2nkk8EjDCwQW5ThG2HSQnQRlDIC0NPgGzw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.2.21","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"1.2.2","node.flow":"1.2.2"}},"1.2.7":{"name":"inflection","version":"1.2.7","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.2.7","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"59db4505310a746677182ed46e155e003bfb3591","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.2.7.tgz","integrity":"sha512-0baJIGEJm8RVuFZ390oImj8Q0i57nZvH/gRKjLbatW2JYEnphm+IGTuHCRw5PN59nAtrrQrT83q0tnebEznz7Q==","signatures":[{"sig":"MEUCIQDT335w+bIEgqjkkAA/xuxFnnmITkiF+lRPJjpjaPdRQAIgdXxMbSurtiIF28HNHaabFpfRo+k1lfMlHkpm61t08+8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"2.1.1","node.flow":"1.2.2"}},"1.3.0":{"name":"inflection","version":"1.3.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"17ab47a3811198a13df30005cc73b6cbc392d6b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.0.tgz","integrity":"sha512-fv1o6heGF9ht1pC2veoSyOnLMlpFMSHcwAR3rKwlIsga8YVC/jqT6qovFcAfTOJkN5V6GgNouIwdPSuXXeN06A==","signatures":[{"sig":"MEQCIEjzR7joU59WByIopN5tklbnfq9JIOf56J5R0SJDXAZhAiAhAAb6f6HFFtVt60qDki6xDAyjR90WTBwYaAz27DoAgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"2.1.1","node.flow":"1.2.2"}},"1.3.1":{"name":"inflection","version":"1.3.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"27a7962010c989e27534024c2bd99380c3f3c341","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.1.tgz","integrity":"sha512-aRzjFfieQ3qY5e2aOBVouYSggNO7rayMeZcW5QLOnlTKDGBZhIbc9wAC/SV1po8guVvJKzouplm87dZvJAKx5Q==","signatures":[{"sig":"MEQCIDonE4VJt60k+OwzYiBLjdBlzmNcK9IAkZhBeX6ut7oLAiAl0TWeNjAwZz1/FTTcSCs9noFg98wWIgYp81Fpv+EgJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"2.1.1","node.flow":"1.2.2"}},"1.3.2":{"name":"inflection","version":"1.3.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"13e3c15699a973d88bceb216b2e8e77e54a32831","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.2.tgz","integrity":"sha512-ecPtbw0ahZHS4/LRMpOunugL98iO9XbgnkWzTxfOTUjpd2eBxua8VdOvU7/E5McdVat4kIazG9P0Kex6CuBE6A==","signatures":[{"sig":"MEYCIQDVhANRHnae99+59Hdg+Zb3MFPwTIqvVYpHnckxhFdbVAIhAJo2ATtPrtYjHngrzie+477gZwUnIzQBISu4+MSqntcg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"2.1.1","node.flow":"1.2.3"}},"1.3.3":{"name":"inflection","version":"1.3.3","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.3","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"16a1f8eb6a96761b8729a3fb35469a7b3b32574a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.3.tgz","integrity":"sha512-YIgmkv/AXX6NdNM4HDX+US0EkxYjfSY8lVbBzhMidCUQJHjcEFAbutP/XSkdK42pjZvQViO2B//FNSgAxGRC0g==","signatures":[{"sig":"MEUCIHvQ1zTP2Vtg33l42Q2a+lu4U4eGUA7OqenDuamih/dKAiEAzalTjg1UCsPf7en9tiXTtVD1TEFpCLyDUVYD43S9UWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"scripts":{"test":"node test/run.js"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.21","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"should":"3.0.1","node.flow":"1.2.3"}},"1.3.4":{"name":"inflection","version":"1.3.4","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.4","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"1789bede761ab639661b094f157f0251038dade8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.4.tgz","integrity":"sha512-yO4v2vuuqRwT5AzOzKhoLQ28KYX3TGYDM07QHhpf7K1MNma9S3G39DQftoIsW0biW3umwdCYRgS/eatCuNW/tw==","signatures":[{"sig":"MEUCIQC7qqRfJKJSC+VIbe3FI65fzzaeC1XJX7GIEmeBQUQUxQIgLOwK9MXhXqg+/o7MnVp9AdKCy3R1SCm92vZMm1CN1Ws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.24","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.17.1","should":"3.1.2"}},"1.3.5":{"name":"inflection","version":"1.3.5","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.5","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"3f11bef1f8dfcd1766a07dd01da31173852091bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.5.tgz","integrity":"sha512-mGtcH2JtiqfrOC+39aSDOOGAQp8dVKql2L+7qFSuruFFR/DaHnd0wCzSYTuABW6iNVZtTNoRA2ZPfwZ3lt6m1g==","signatures":[{"sig":"MEQCID/XnaCak429xes7Dt/K/RlG4Zf/fVJAVJCZbPGLO5PuAiBZ3I+8R5k92vvxBzznOGLZ88TdZ224FmVWghdLy7UXcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","engines":["node >= 0.4.0"],"scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.3.24","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.17.1","should":"3.1.2"}},"1.3.6":{"name":"inflection","version":"1.3.6","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.6","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"Dane.OConnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"e6ee36ae17d02da993e540749dda2cb76b98665b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.6.tgz","integrity":"sha512-7FHziO297EBjre7ogb5xlEceEEih17p/h0aRhHasr7c4GPk006GB9SSBd2Q6+jC8Sq0/OVvLIyB2lvbeDB4ZDg==","signatures":[{"sig":"MEUCIGriFcmSpNDvPWWO/R3HbMmW9ZGek4khM4gnw0Z++dFqAiEAtw7cMGitKwtXT6k5f8SETHQe8d+biAeUjeaMcOHBcts=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"e6ee36ae17d02da993e540749dda2cb76b98665b","engines":["node >= 0.4.0"],"gitHead":"a2140a5791e3c96bd4739d822e90a73de91f5e39","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.20.1","should":"4.0.1"}},"1.3.7":{"name":"inflection","version":"1.3.7","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.7","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"3f6013432a2fd516b59af239bc036ba78f4d1389","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.7.tgz","integrity":"sha512-CmfHYU2gyu8uoyvSbnfYqKI0Un02gRT0+FiSZxZO47gFhGtyCAGuIENEhgVDS6j+k3IeKXb36uxW69QxFltVtg==","signatures":[{"sig":"MEYCIQDv3pNZtVLMO+tzn1WH4zD0eJQYvpfu37M2uaM9GjjiTgIhALj8REBR3Ql828nnWAwlOcZjYnltVn3KhEhrN/XeI25r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"3f6013432a2fd516b59af239bc036ba78f4d1389","engines":["node >= 0.4.0"],"gitHead":"deaaf0326948b2cd2c0d779e8fa070f5eaceffa0","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.13","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.20.1","should":"4.0.4"}},"1.3.8":{"name":"inflection","version":"1.3.8","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.3.8","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"cbd160da9f75b14c3cc63578d4f396784bf3014e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.3.8.tgz","integrity":"sha512-xRvG6XhAkbneGO5BXP0uKyGkzmZ2bBbrFkx4ZVNx2TmsECbiq/pJapbbx/NECh+E85IfZwW5+IeVNJfkQgavag==","signatures":[{"sig":"MEUCIEo7hK0nPzeQ6euOyuWAL/Sdf7PkRVbdBL8TTro1o835AiEArx69oLCyJgl2qoR77e/GE/KUEpcT+QlFJNZCnWUgm0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"cbd160da9f75b14c3cc63578d4f396784bf3014e","engines":["node >= 0.4.0"],"gitHead":"c0fd0d45c7af9e2074e7dd4e9b1bd16e7cf9de0d","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.14","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.20.1","should":"4.0.4"}},"1.4.0":{"name":"inflection","version":"1.4.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.4.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"d006a364ddff627598a6ccd6a9b579e4b9a19b60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.4.0.tgz","integrity":"sha512-8Vsca1yvKA9MqjS0QwesdnR/yqOJP4VppsrnbVpzM/qUSYbyzwT9kXRMVf3My+RwsE/qcEnOlJnjcz7EWez71w==","signatures":[{"sig":"MEUCIQC1ukA4576ttBiLz5Jps8mV70FttcMqcymQWAB4chw2swIgC45tnT3DCw1F8umgxv1AF50YDJXnE7uCuSCGHoiY46w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"d006a364ddff627598a6ccd6a9b579e4b9a19b60","engines":["node >= 0.4.0"],"gitHead":"236f490743d934dc3f2eed6a2a40544fe09cef11","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.23","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.4.1":{"name":"inflection","version":"1.4.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.4.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"8e328bccc5aa7e799ffac17a38cb9148540b66b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.4.1.tgz","integrity":"sha512-nC+Zo9KRd+Mx/IlW6TvqyC0hHJQryFg8UvNA+EMmPutcYap9+9e8xQLJ5cvjBPX36i8Bwekp+P3KoBQfr+QVkg==","signatures":[{"sig":"MEYCIQD5qFwviMasrHxbtgjOmyf/x77fMLgisAS8l33HD7rX1AIhAMoWd+wCwzFmGYpVcN+Urllkk2SvYlcpmsuveXTlJoz8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"8e328bccc5aa7e799ffac17a38cb9148540b66b3","engines":["node >= 0.4.0"],"gitHead":"dd2cca24c15803949482179ad61bc70c1dc966a2","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.23","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.4.2":{"name":"inflection","version":"1.4.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.4.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"8bddf6ede66014cd33293dfe76e18a77f53d4a3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.4.2.tgz","integrity":"sha512-st+sQaP2bynrIcKTQOqY2ZhsGrHwL8BQFQCEtWRE7+YjNrACEWOqZTC6/qIt3o8RblaTMAIUs1forFncrsmw0w==","signatures":[{"sig":"MEYCIQC/CysMeCZPzN+cN3hMEYDeIbrxRfwMxmhz6ihI1iGy+QIhAJQV3qmEATXZiMmfu71sAHJKbxRCHXCz1bWs/O58gx7N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"8bddf6ede66014cd33293dfe76e18a77f53d4a3a","engines":["node >= 0.4.0"],"gitHead":"9e06fe0cc6d4124727b6b0648769dc340896ad0a","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.23","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.5.0":{"name":"inflection","version":"1.5.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.5.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"0ea8d2985644404d70a261ee468c06ee9366f736","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.5.0.tgz","integrity":"sha512-0cFeBF8fi1hWiS+kcca06V2wWauyMjmqF/pAXItHfilmQb/qYgAdIoaHn9urMoFexwWkl/v9OLva2Bw8+966vQ==","signatures":[{"sig":"MEUCIHwkHHe9tXqAWdXFhatqsrl7XqNd7ISq7V+HfNaocSYXAiEA4lx0mzEVeou5AKisCk59Im7gkbZM95aotpZ6+ZDg7qM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"0ea8d2985644404d70a261ee468c06ee9366f736","engines":["node >= 0.4.0"],"gitHead":"210d1811e8ebcc48f1474630a118f72d8b3233e5","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.0.0","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.5.1":{"name":"inflection","version":"1.5.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.5.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"c61a0141144e149bf92948eba2faa7cbde8f2306","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.5.1.tgz","integrity":"sha512-PoW9Gr9C77CN8dY/7F0AIzbgvqP50i91HT3SlhLPcRu7AxtyQKB7tnDJZrthWV/nANNYp32GmWhVqcRLgHBVTw==","signatures":[{"sig":"MEUCIQC97in0CrPAAblHWlm+eweVU/wRERi1u6RYbE+JlRoq1AIgJ5dnBOkCwoiTFYNn/fwJ/jeJE7fa818yAoxn+B0pDuM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"c61a0141144e149bf92948eba2faa7cbde8f2306","engines":["node >= 0.4.0"],"gitHead":"db1cb6f6a0f549c4d0940b947f39b873cf4ee5e0","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.1.2","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.32","dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.5.2":{"name":"inflection","version":"1.5.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.5.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"d7ac855bf4e1ca8b06e40ff8af85ee152715a77c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.5.2.tgz","integrity":"sha512-+VYTCRA2tENeClJHD+cSLsu2MR5kmtRw7npu85t6Ni0D91gLWr6aQgvc8Zkrx/TaJtTMIh9Mj51FQNbyWsQQtA==","signatures":[{"sig":"MEQCIA7sCt/5E+OSJlvidsiqukB3v33l/PkOYXcMa86rsihoAiAsYYEoxQsfFU51JEDKWhwVKEpLQ5K3mfMYw2izhN6h0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"d7ac855bf4e1ca8b06e40ff8af85ee152715a77c","engines":["node >= 0.4.0"],"gitHead":"78f9521397361efd670a274f583dbf3a8e7480b4","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.1.2","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.32","dependencies":{},"devDependencies":{"mocha":"1.21.4","should":"4.0.4"}},"1.5.3":{"name":"inflection","version":"1.5.3","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.5.3","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"192a6d80f666d11b10012311d7f330ee40dbc01e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.5.3.tgz","integrity":"sha512-4cGF2Y1O7sjrDnADC21Ls+DDKpu5jZZsW8M2H+nj81lP2M9blDZZ4jOX7iZLHu0j6QRyU/a8L9MozaQ1vXZoFg==","signatures":[{"sig":"MEYCIQDniVnEtWx7Pn1bJSpDHgB8co9w/UT6cyz2oZ14GotfmwIhAPEGPTj/oq32/ki9owmO7Im9FgY58pzM/QJw5iaZpXaE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"192a6d80f666d11b10012311d7f330ee40dbc01e","engines":["node >= 0.4.0"],"gitHead":"0e92daec4222959f6efe34e769c8800787062155","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.1.2","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.32","dependencies":{},"devDependencies":{"mocha":"2.0.1","should":"4.3.0"}},"1.6.0":{"name":"inflection","version":"1.6.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.6.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"7c033283d5b13e7ce85a019af680a97295a04c7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.6.0.tgz","integrity":"sha512-u3YfaOHB0AlfFqyRXz40z+ahWQwCtt2zWlhEnUf8HW7rR/Apg24SykYlJXnkI25+RueeuH9QONWUg3g+BT0cBg==","signatures":[{"sig":"MEUCIQDD1Ni+4XGofs9xDkX+6ulyApnfyB0cH+d0lD/yT9GNzwIgf2V58TksDjKeXpdl1q8CMoHmHD6RXkh5IcqvOM4QdBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"7c033283d5b13e7ce85a019af680a97295a04c7c","engines":["node >= 0.4.0"],"gitHead":"067abf75164db75f109bd5ca5e8ab0d9841d5039","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.5.0","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.35","dependencies":{},"devDependencies":{"mocha":"2.1.0","should":"4.6.5"}},"1.7.0":{"name":"inflection","version":"1.7.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.7.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"095d61684c0aae2cd2b10f2df306407ea042338b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.7.0.tgz","integrity":"sha512-APgksGHHfaV1g9VXyaVc4H5t0rCFqCcU0GJ1Jk9m8MiOyH4JyZUehWbpGC1H3FtnFmNef1Bt1Ho9aNP9wNxcFw==","signatures":[{"sig":"MEUCIQCsoe1bfX3RJ+/2AjLBQUTAldjQ+0nzGJs2IHKntuO/MgIgRrso+2ROSxCDbyUO6EuulkBJoc4glwx0YUoHyegi+AM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"095d61684c0aae2cd2b10f2df306407ea042338b","engines":["node >= 0.4.0"],"gitHead":"1c29c38afe855e9c308136698004416080681405","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.28","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"2.2.1","should":"5.2.0"}},"1.7.1":{"name":"inflection","version":"1.7.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"_id":"inflection@1.7.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"1cf160cd420956d674fd15af6d94291271d38b78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.7.1.tgz","integrity":"sha512-W601EfCeLFU5Uri7hV2wztiGDN/ItS8imk2JtbHo66pNjSAvHuIZ69O8+NU/QrkUutJaPEc8XVrvjkQsA3QLtA==","signatures":[{"sig":"MEUCIBXjFOOZPQJjUa2Xx+RPrGUriM+HkkqyikmW0p+pwJbaAiEAleQe0EsMcLrT3+jB9iG5eMfbMJ+31rGWEdKjxf5k+fY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"1cf160cd420956d674fd15af6d94291271d38b78","engines":["node >= 0.4.0"],"gitHead":"92e8a62ada37b747939b1018a723620926d4d8b7","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"licenses":[{"url":"http://en.wikipedia.org/wiki/MIT_License","type":"MIT"}],"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.8.4","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.38","dependencies":{},"devDependencies":{"mocha":"2.2.1","should":"5.2.0"}},"1.7.2":{"name":"inflection","version":"1.7.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.7.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"0d7fa05876d2de827d2f78af90160f2940a1872f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.7.2.tgz","integrity":"sha512-CuccCb2cbymgdAT2X6XAvtQiSJ1Lq9NqT4SicHUirtr8VtYLs27UnOJFY2rIKBEEqdHBj/k7/f3eFa4BBflkPg==","signatures":[{"sig":"MEUCIBkVsDFlz+8mZLcoG8hH/x+tQbtwjhq36AnTJHBV2f7mAiEA+nxWkJdzQFsbeEEASVxFA7AbQ5sxc64n3EorOz8ijeU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"0d7fa05876d2de827d2f78af90160f2940a1872f","engines":["node >= 0.4.0"],"gitHead":"3a532b7817cd63eaff9894b64158c306578a0df7","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"2.14.4","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"4.1.1","dependencies":{},"devDependencies":{"mocha":"2.3.3","should":"7.1.0"}},"1.8.0":{"name":"inflection","version":"1.8.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.8.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"}],"homepage":"https://github.com/dreamerslab/node.inflection","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"0b8ccf7620c944dd17e44c9d38830a01385b07e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.8.0.tgz","integrity":"sha512-r4oJL+Vs5l/0vhO/71fch07Iq+lg1RFwoXzAGF3WUgb/qV9i5V9nBl/jWIHzttJN+tmWJ+XZa9TsvDfYXvcsxg==","signatures":[{"sig":"MEUCIAQ+wfYCi2jh+YOyD0WB3OZXIYmCe5rVdf7p5+osSsx6AiEA2tvt+4XsRG6XaqREg7BJHMFP3jlfuofbhNKNwkvaDsI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"0b8ccf7620c944dd17e44c9d38830a01385b07e2","engines":["node >= 0.4.0"],"gitHead":"c8fbeeaf7291f5b84f53519cc85e3e92e682af3e","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"1.4.28","description":"A port of inflection-js to node.js module","directories":{},"dependencies":{},"devDependencies":{"mocha":"2.3.4","should":"7.1.1"}},"1.9.0":{"name":"inflection","version":"1.9.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.9.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"2b3ca058967b85c3d23a08200d296087a4848a96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.9.0.tgz","integrity":"sha512-6ZwParOgSXRa2Nr7ivT8w64eW3lw83HHGWVUv4ePE0v/+cOZDoD2HlNvTiEeQ03pxPFM6//JS3ZGTHFpNDav2g==","signatures":[{"sig":"MEQCIGqpzhjWDvj9JND59MDOUlnrDUZKWwGjrDbO3Lu/KQYFAiAJjRafD1ueUTTFQ9CQFO8H3I1+sgeKMOttNleUiyePXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"2b3ca058967b85c3d23a08200d296087a4848a96","engines":["node >= 0.4.0"],"gitHead":"345ddc889c7861b765a101ba6a537b2f3cc13aa1","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"3.8.5","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.38","dependencies":{},"devDependencies":{"mocha":"2.4.5","should":"8.3.0"},"_npmOperationalInternal":{"tmp":"tmp/inflection-1.9.0.tgz_1459903320902_0.8603008997160941","host":"packages-12-west.internal.npmjs.com"}},"1.10.0":{"name":"inflection","version":"1.10.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.10.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"5bffcb1197ad3e81050f8e17e21668087ee9eb2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.10.0.tgz","integrity":"sha512-FgQu2Woxh3lXuuuFDoHPd6CVIMW1G+knJkOhrXg677BPu4KjN0xzXAQ6lwsUemk0Ye9HaXxZ08/v+TaSRCA7lA==","signatures":[{"sig":"MEUCIQCcVp4/7u7aRtDgNfs2IEObAAZSmBvkGLq2oMVu7IoqkQIgAKb8HhsSp9zpAs09Z5LdFKkwew00I+3PHXsyzMeweL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"5bffcb1197ad3e81050f8e17e21668087ee9eb2f","engines":["node >= 0.4.0"],"gitHead":"45bb94c3d42c75ab8842493ab5533ba35c30275d","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"3.8.6","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"0.10.38","dependencies":{},"devDependencies":{"mocha":"2.4.5","should":"8.3.1"},"_npmOperationalInternal":{"tmp":"tmp/inflection-1.10.0.tgz_1461120082370_0.7527084928005934","host":"packages-12-west.internal.npmjs.com"}},"1.12.0":{"name":"inflection","version":"1.12.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.12.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"a200935656d6f5f6bc4dc7502e1aecb703228416","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.12.0.tgz","integrity":"sha512-lRy4DxuIFWXlJU7ed8UiTJOSTqStqYdEb4CEbtXfNbkdj3nH1L+reUWiE10VWcJS2yR7tge8Z74pJjtBjNwj0w==","signatures":[{"sig":"MEUCIQD4TZjs2nM2FOXXmfuCsv6LMa+LrKGKh0dpSo+Bh0z7PQIgHVQJICTj8f4oL2WKRHGybl7p2IxF8h3bT+RHX97BM1U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/inflection.js","_from":".","_shasum":"a200935656d6f5f6bc4dc7502e1aecb703228416","engines":["node >= 0.4.0"],"gitHead":"6cfc616ab8fbb04fc52ed428926cc021d87d6c14","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"ben@dreamerslab.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"3.10.3","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"6.3.1","dependencies":{},"devDependencies":{"mocha":"3.2.0","should":"11.2.0"},"_npmOperationalInternal":{"tmp":"tmp/inflection-1.12.0.tgz_1485570512634_0.6750102769583464","host":"packages-18-east.internal.npmjs.com"}},"1.13.0":{"name":"inflection","version":"1.13.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.13.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"dcff01d64c65249e5c44ffba13a8a2e9343ec4f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.13.0.tgz","fileCount":9,"integrity":"sha512-AeJj0v2Cqo/9t+H5cOHoiJPf//Te+Nw89Fc/mtAtgd1ggssr+P63qQ0Ql8KG63++xOiD3Ataouak2KBDleX3Jg==","signatures":[{"sig":"MEQCIDVNylDU32oe9PPTRnEZNFMyPtlGYU5VIggAsjVFeBtcAiBa7LJoMaQ7adS6oYb8y1UNMNq9jaYgMrGUmBnFb52xuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjTqVCRA9TVsSAnZWagAASXEP/i9mA5o/PwBcw3EE0mR7\nG23FGxFFhORJlcn8wSDcbBQmCzvqV9SY/pNwWk3yqxGI9pEqQvc56PvlRov0\nZqnOIuFmETbljgYcRmMBKpbLZw1d6WZlL3AQq4YLkHPedADnjrTje/WYZ/x9\nMzjjStZWmw+sWX+LHy8nVF68OasSlVYt3CgNO/rxZd1qbK3nsTSZE5tzljLH\nz2BK+nfPU/paJS9Wjb0W1PI6ytka0bWynjb+R6pM1T2pePDEBR19yH1Db+B9\nQ4UOLMxV2jk1SUVoMfpgxVO/2j+fvUnBrsswMn1YVjAv5+Uz0W5J73Oi/0+/\nmkoJMZWyG36B9cpv2qwZ+c6r7tPcOOuq1GNGTRk02j6dmqQvUv6ePWkXJy0F\nhevwTq9u5cStiQA78lNzO4Q9nISQnshQ2PTj3IhReL0De2MmT1i53NaWd2m8\nnZ9L9HF4oROf2ujCKt8/d6tjAFydAjl6tAYIzM398vkE1cNZBsyvwXL2zVsK\nl+dAFDc6T5VW170OKXVlXo21ZSCGmBBusQdMwF1kRbflH9gUDmcAq31bnBTy\nzXVyfB8IEPF5E6A+kLeQQ5E167SgtwS7L8LhUzqSPKC8LtQsy1VsL77LSyJq\n7cMGhJU77Oj0HfrRUowUwKgV90EcV2/vMzBTJjwm3ip2/4WvYh46CJ/mH9SJ\nlgOo\r\n=6NbA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"gitHead":"38e46df6ac03a2712c24d4d423122645c01c42e3","scripts":{"test":"mocha -R spec"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"7.10.0","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.3.2","should":"^13.2.3"},"_npmOperationalInternal":{"tmp":"tmp/inflection_1.13.0_1619868309345_0.6940641279690847","host":"s3://npm-registry-packages"}},"1.13.1":{"name":"inflection","version":"1.13.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.13.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"c5cadd80888a90cf84c2e96e340d7edc85d5f0cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.13.1.tgz","fileCount":5,"integrity":"sha512-dldYtl2WlN0QDkIDtg8+xFwOS2Tbmp12t1cHa5/YClU6ZQjTFm7B66UcVbh9NQB+HvT5BAd2t5+yKsBkw5pcqA==","signatures":[{"sig":"MEYCIQCQx0evZ6YdwCgNs/MQkxYzyf7VpvaTt63HbWH/3nnaSgIhAI3z6cH1qVfXWBAah1qb6p6Xlq5eSPBgi1MnLWqoDZEj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjcaVCRA9TVsSAnZWagAAckAP/jsNwnkt/KeOxIzntvN+\nxSG7fcSMTfo8OPlhbZGJ83lxEJAsgRzprFqmlbCprOvKVMy98aFDFlnN6YdV\nFHfUfvb5z9GxcCUVmFdcYTysAeClxK2pWaFcBk12VDzo3OGF+5H+8Bdru6Im\nLA3FDb0hAQiNKmyPtH8agIcGyBgmPJlifz6pNrzTqdfkegUWFjPdjUBymk84\nlJdwbqgHbFThs8SjN2r3gRlhzYVIi1mL1X8mZYVscckoOOvYh2pRI/bNI8fN\nmBpRe2ad/trUdxhj8blvXTCVbSgs+6RoSPGtyzJRVqeN2n0M8pM+a3GCwi80\nKS2BhVrDmSjNDQPAqiGJl/95Isvkzs6/QD4fngb85MxtY2OC2YrkeBZ3GZ8l\nRBC85kYzsWX2sFAnppoyFrmWWAZtv2a4QETwSmQukNn03v1z7Uu9eZoj3NJm\npMFFRyHmdji5eeCYwAb1bBcaP9Lplbd6kPCYhPDFf+DpicVuvzI8+tpyYT8C\nwuCTB1bnJ6/zgDv5uwR7dEWJWUKdquPTRIsETwKPu/JLlDVyauLLZWD2yoLw\n7UrdZaOCUhdQtyGmaL8cIiuQvpfDGGvAxMKYCyTl2dl4yHJmNJ9a0xA5lgqq\nMDyjVtBpgRJTpCQUIg4QJg0POYfgKd1aKoAWtcXRRRezYm4Vt/XNgDBlPo7W\nlJyh\r\n=grUr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"gitHead":"11816b280cb28114311de53ace48f8a45a121c7c","scripts":{"test":"mocha -R spec","minify":"terser lib/inflection.js -o inflection.min.js -c -m"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"7.10.0","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.3.2","should":"^13.2.3","terser":"^5.7.0"},"_npmOperationalInternal":{"tmp":"tmp/inflection_1.13.1_1619904149011_0.5726183867372243","host":"s3://npm-registry-packages"}},"1.13.2":{"name":"inflection","version":"1.13.2","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.13.2","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"15e8c797c6c3dadf31aa658f8df8a4ea024798b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.13.2.tgz","fileCount":6,"integrity":"sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw==","signatures":[{"sig":"MEQCIDoQSXdpqz43mvolMfhFQGdz5Je0+RAkm1oTvEWQsj51AiAB3/0JKIEDSLRuwCu3Dxr9+l8XW/MQ7HqM8RpmVWmn5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9PdyCRA9TVsSAnZWagAA2bAP/1bt6Ylwcm8C2vHQA4Rd\nWB/bl5Nlf0IvtIbNGtCBqoHeaReBKZr6G5bU4LbbQrLlEBM2rwlbJPUHB4NB\nrW5GMf3bmO8js7ej9XM56M3yXstw1H4TIXMG/Di1Su+iM6zazBl1fC7QFrAj\n2wc0K0et7VrY07c/njC3/9E/6Rt9+vRgs5W0gORDBgQ5QyjtAurm3r/2okZv\nW5qjOU9LdWysRPaHQwxlfe0N+2isdo2uQxZez5tclYkNRjMWfC89jdzHmLqc\n0UDvIP9VcBbUZnRqCDg42imIc0BQVwCViEd7OPpm/ktKlG8yu1B7KUO8+Xh6\ncawn6Lvd7Z4O7ahpKYmsfzNg1trpowSwcfPUqMdffCJ9WTMjh/wF7FoEcrzW\nTGbQzn0GvZqSebAjPk1lmGV4JkrrpnTJwKlaluw/7OzNfSQflqUrp+XO+DmD\nesAkdG3MAxlIugVvBUH1vTIThfqctOMSgZc8emy7vVPynBYLsfLSSrmzzwvt\n0lGAIq7+3CeIUZHn6IDmtRAue8DX8d/ss/w6MgBfilec+ct9HssQpdwuBjOI\ngSi3a7DjOdwdx8h9/mJV93vRIxoMBscpAsDP6bEir9qNHrAEJvr84WSY+Pm2\nD/UfTD5J5/xrA5nV+RLDEjnqjY0caElod28nessyttzJhMSWqUk2ylnqR/7O\noNhg\r\n=OJKt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"gitHead":"63db1f5d9a5004248c9e3d5ce4e7f80ba986dafe","scripts":{"test":"mocha -R spec","minify":"terser lib/inflection.js -o inflection.min.js -c -m"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"8.3.1","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"17.4.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.0","should":"^13.2.3","terser":"^5.10.0"},"_npmOperationalInternal":{"tmp":"tmp/inflection_1.13.2_1643444082435_0.6917129251243284","host":"s3://npm-registry-packages"}},"1.13.4":{"name":"inflection","version":"1.13.4","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@1.13.4","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"65aa696c4e2da6225b148d7a154c449366633a32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-1.13.4.tgz","fileCount":7,"integrity":"sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==","signatures":[{"sig":"MEUCIQC1fP5bgXisErMgC7Czocf1QuCTDZIwhikTnB9F5thCuAIgA5rNkk454DXO5dtT6V+WIJNAHSTs4Nq5yy353yanR7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJr+aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmofCBAAggc/iPe9QjYzA1GirvbNYF4ucXsU0NY+qN2cMylra3floDA2\r\njK+8eP24IRV7FSxOXl4TmremIBvqzZ3kzbCTPEiXmcgbFsIRX2cL9DZVTGFi\r\ndvXLbAGBB8gzp2FrMeXyexBnoQB7kAuJJ8LWJbB+MvjaBspbGJqdDxNXpNUR\r\ns7PnocCzuthxR7q0dzTC8KN/lNchSn7akR8VUDMkFRklHEORoc8QHH69rEJk\r\n4SoVkbkenOVq7qBWycjzY3iI8lbZj8uNkJINK+9FRk4R5KziGIXfzYinCHqr\r\nEurIpg4YV5P2U610ja5UPBNYPN2o6g4pWtBNcp5/3T58yDottwrAQScweItn\r\n2FGU2ynATvKqj70G2LkpNlAqWvXk/KjMsTKwh99biEnKBTDPu09KTb7carZu\r\nYpYjULO3ZaP4XhlcbTbXR3Gio5nyTOzH/D8Xow3+s0J864GB99YMt3laGoHJ\r\nro5BcGmSAnXmuFjDv25OQiHx8y4/BrNM85fzw8gJe2PeLYU8LmL1Uze1sCSF\r\n0B91HMuNNyjZO9IsierXUVwq755OB/rGGsGB6z7MbbH8pKiAP3nTelaVTkEX\r\nTnuvcriWL+weoKNtXPqKfI2JBlvbonQdnlA1QxN2r3g3cdwwsSb2HaDnh08M\r\nZ1kVw5RgA8iQQjDACnvKmPN8ZyAcg8e6lWc=\r\n=1gha\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","engines":["node >= 0.4.0"],"gitHead":"7fb19c67022c66443556aef99ffe3b79384ad341","scripts":{"test":"vitest","minify":"terser lib/inflection.js -o inflection.min.js -c -m"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"8.19.1","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"18.9.0","_hasShrinkwrap":false,"devDependencies":{"terser":"^5.15.0","vitest":"^0.23.4"},"_npmOperationalInternal":{"tmp":"tmp/inflection_1.13.4_1663483802705_0.633764949341932","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"inflection","version":"2.0.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@2.0.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"a118c7a75b152b946e230996f3f0b140bab04039","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-2.0.0.tgz","fileCount":11,"integrity":"sha512-omnh6uoxorVM2tC8hDAjs2gUAqP2riJO8ZZc/TIgXIMZjR7a+/HMU+KtuAZYkMb5S6oqsZilr9du3r72eFdgjA==","signatures":[{"sig":"MEQCIFmwuGwh0kzAb9IKspG3aF9Fx2ZPCORyJZKOAhsrW4KAAiAjaK7E8c3Q3MCNyJd2LUe+KaOnuO8Cz23K+JEEyiRpzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":93857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdxh6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5Fg/+IdM9GZ0RFukK4c3Ngd13WhLNdvK7AifvHshQftz2epBCiCXn\r\nw5Qrt83A0jF9oE8H7F+5DX2BCvyO6DOEq/5r+zeDyECfpsx00rS758Qk/vJs\r\nQq32YwvmQCwTUuYi/QcD/5bwahGteAU2VeiW2osVD3rd82ozAxrJVyGqbvc3\r\nFCBWHVrpURRTdX4HgeIIHg5un+Au6arLLRaQ76WGEcsGBaU8RDRHAuV8dIWN\r\nIoMPlSD6gGHq664pWELJX1/aJOjBk83NUVrdY4lJt/qrgcT22hW6QdFGsUyf\r\nabc4MgCqhX6MPq+p7mfVUGkw4lT1XBX8LozBnHBJuMfpeSUxSM/IAfA+yFyS\r\nWxHSQ3ReG2JnGk+rV+cFZLmM5GBqesNHIwh7+8HGlde2OLOW93uTyyLU/TqX\r\nJXVt+PndMhUC94zVidSqBg0Nb5spQK1tA1KHXrVW7AbqgfJ8GopJpbn3YcEx\r\nZ+jPqYYAo/hipnQy/euSVXTpX8garej3R33kLnhF/Vm+WwT0PShIztX2jcQP\r\nbTVIkmfUm4TTff2/6/5FGBMJmD+CDngmfHl9znk3eCHCYJ/QaAgcnbS+8wZM\r\nDSf71RjoAfH7LVS0eOzhhUuBtqizbuUvRc1WPBYiw/uB9ipWvOFsOwjws/44\r\nUA3XrHquOddoD22xWgFetX6yQKBBJBDQl5c=\r\n=iLjt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","types":"./lib/inflection.d.ts","engines":{"node":">=14.0.0"},"gitHead":"cab569c534637d92a866c5132b74b944532ff5da","scripts":{"test":"vitest","build":"tsc","prepublishOnly":"npm run test -- --run && npm run build"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"8.19.2","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"19.0.1","_hasShrinkwrap":false,"devDependencies":{"vitest":"^0.25.2","typescript":"^4.8.3"},"_npmOperationalInternal":{"tmp":"tmp/inflection_2.0.0_1668749434368_0.3231852748284658","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"inflection","version":"2.0.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@2.0.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"bdf3a4c05d4275f41234910cbbe9a102ac72c99b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-2.0.1.tgz","fileCount":11,"integrity":"sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ==","signatures":[{"sig":"MEQCICJCyWAxieSeGUiIb5ThdQtSPlVsql+Nv+3eOHx7wt2RAiBRHwiXEAkQeMJwUMUkd6W/wVP68DYrfPABZMLaAxwC1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqemuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDeg/9G79fK8L166fNQeYcT2mf4t9sIo79hqWkBX7EBhDHeGQbIu6z\r\nRtQlfnXrfj3HUcf6KF6P6pvISWSsadWDNHVLS0xnspVfFcvKyFokrMJRduNC\r\nV/pmPpcc0nGKySsx2u6mMIaHE+FEG6AJROgJv6EwnRTNQxWrmBYwrm435aCm\r\n15UMIP9URQEbziFWHc4Xb3o0DmAYzXMaQ7JfewDuCI0BUkorQp6XRSGVENUn\r\nAFmvKZiuDazBVhKQpaSLJ5mx3A4ssfK/W60Gqvg+wwfhkM/uDGug0d6rvC4I\r\nmnPcYqqj0ZmB9sN49sCmkcogxjdxALdcgIqzy6U4D0AV8g9/y2BqR6xVvv1Z\r\nbj/PIN4R/qnwYnNnIQAoUirD/cmUYez5RQelXDUpn14BrpKRjz8q3b15x0BR\r\nXtvwK9uWoaympcMqcVVCj9eFfn2UDk42JV4ytzpo49XCbZq42H2wgUlQtcxm\r\nnIfneKHCeMEN33cQKKi/8xJt92PkyhfcoHpshdai84b3hBbMDOFo/BgKMfq9\r\nVtRAxT+UAoqSmjJNlrZ2WeuIqQVh1d9YaYWnGZW6CUjH2HjEstF6WQswhXEN\r\nfxVKhWConGxTMAMkZWCV2IYjkEiyb2sxQpor8rV9SRw7yFE8nKDwbTmTqJLi\r\nP6rZzAoLLfSv9D9LIQOiOCp4rvLnzGey0vk=\r\n=05YV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/inflection.js","types":"./lib/inflection.d.ts","engines":{"node":">=14.0.0"},"gitHead":"6da46384997dc863519d62679ffe5aa0153bba55","scripts":{"test":"vitest","build":"tsc","prepublishOnly":"npm run test -- --run && npm run build"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"8.19.3","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"19.2.0","_hasShrinkwrap":false,"devDependencies":{"vitest":"^0.26.2","typescript":"^4.9.4"},"_npmOperationalInternal":{"tmp":"tmp/inflection_2.0.1_1672079790587_0.1483909406069137","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"inflection","version":"3.0.0","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@3.0.0","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"6a956fa90d72a27d22e6b32ec1064877593ee23b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-3.0.0.tgz","fileCount":11,"integrity":"sha512-1zEJU1l19SgJlmwqsEyFTbScw/tkMHFenUo//Y0i+XEP83gDFdMvPizAD/WGcE+l1ku12PcTVHQhO6g5E0UCMw==","signatures":[{"sig":"MEYCIQCcPChef0wMSblif89neCyuSp6EysBTzLPEYm4Uf0dlogIhAN+YFlnVueCrNbCwWLvngbv3QntjhOu/DB1AnxM3rAp7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90432},"main":"./lib/inflection.js","types":"./lib/inflection.d.ts","engines":{"node":">=18.0.0"},"gitHead":"ce7bb3ff3d72e71c1a2949dac20484039edf6853","scripts":{"test":"vitest","build":"tsc","prepublishOnly":"npm run test -- --run && npm run build"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"9.8.1","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"20.6.1","_hasShrinkwrap":false,"devDependencies":{"vitest":"^0.34.5","typescript":"^5.2.2"},"_npmOperationalInternal":{"tmp":"tmp/inflection_3.0.0_1695447795572_0.8874807527428881","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"inflection","version":"3.0.1","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"license":"MIT","_id":"inflection@3.0.1","maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"homepage":"https://github.com/dreamerslab/node.inflection#readme","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"dist":{"shasum":"b1ec2fb8ab0887725d29ad6934810011eb508fa0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-3.0.1.tgz","fileCount":11,"integrity":"sha512-EpyF+TLa3xZPClbkp9pDJZtJFYPHouWuFYsfAQI8AfjnaPVOpmRV6GSzCs+QGelj2eZ7oQllcK23aI1vHhPVVg==","signatures":[{"sig":"MEUCIQD9KfHdPa33UBF4e0HLEk8L4AdRn5g+AVqr7HBDr2a25wIgabHxhUwCYftNbqCHCbA5mDo/MYUXPlEpRBDaXZ30Nyc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":89034},"main":"./lib/inflection.js","types":"./lib/inflection.d.ts","engines":{"node":">=18.0.0"},"gitHead":"37f2760ba8aa3df24b55cdd4be3cab91452d84c2","scripts":{"test":"vitest","build":"tsc","prepublishOnly":"npm run test -- --run && npm run build"},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"repository":{"url":"git+https://github.com/dreamerslab/node.inflection.git","type":"git"},"_npmVersion":"11.0.0","description":"A port of inflection-js to node.js module","directories":{},"_nodeVersion":"22.9.0","_hasShrinkwrap":false,"devDependencies":{"vitest":"^2.1.8","typescript":"^5.7.2"},"_npmOperationalInternal":{"tmp":"tmp/inflection_3.0.1_1735844898204_0.11342722507241132","host":"s3://npm-registry-packages-npm-production"}},"3.0.2":{"name":"inflection","version":"3.0.2","description":"A port of inflection-js to node.js module","keywords":["inflection","inflections","inflection-js","pluralize","singularize","camelize","underscore","humanize","capitalize","dasherize","titleize","demodulize","tableize","classify","foreign_key","ordinalize"],"author":{"name":"dreamerslab","email":"ben@dreamerslab.com"},"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"devDependencies":{"typescript":"^5.7.2","vitest":"^2.1.8"},"main":"./lib/inflection.js","types":"./lib/inflection.d.ts","repository":{"type":"git","url":"git+https://github.com/dreamerslab/node.inflection.git"},"engines":{"node":">=18.0.0"},"license":"MIT","scripts":{"build":"tsc","test":"vitest","prepublishOnly":"npm run test -- --run && npm run build"},"_id":"inflection@3.0.2","gitHead":"7fb05c110fb8cb17e56bf97ef0fceb542cdf6638","bugs":{"url":"https://github.com/dreamerslab/node.inflection/issues"},"homepage":"https://github.com/dreamerslab/node.inflection#readme","_nodeVersion":"22.9.0","_npmVersion":"11.0.0","dist":{"integrity":"sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g==","shasum":"2f591c3dad053e3fac65a03bf6431b675d829601","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/inflection/-/inflection-3.0.2.tgz","fileCount":11,"unpackedSize":90335,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCd94cGN19d8VXSmrJEwKd7kYvJZmEpjQfXD47RvdnC3QIgM6nS0PkHkhAuck2XHISyv1POjk/24X8ONuHaZ+OaVrU="}]},"_npmUser":{"name":"anonymous","email":"p.kuen@cloudacy.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"ben@dreamerslab.com"},{"name":"anonymous","email":"p.kuen@cloudacy.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/inflection_3.0.2_1736280262091_0.2035513760161427"},"_hasShrinkwrap":false}},"name":"inflection","time":{"created":"2012-01-18T11:51:10.601Z","modified":"2025-01-07T20:04:22.535Z","0.0.1":"2012-01-18T11:51:14.334Z","1.0.0":"2012-02-07T16:18:56.155Z","1.1.0":"2012-02-13T07:41:20.995Z","1.1.1":"2012-02-16T10:26:44.815Z","1.2.0":"2012-06-19T08:02:15.915Z","1.2.1":"2012-06-22T06:11:12.947Z","1.2.2":"2012-07-23T04:20:49.534Z","1.2.3":"2012-08-02T06:44:18.375Z","1.2.4":"2013-01-05T23:00:20.330Z","1.2.5":"2013-01-09T03:21:09.838Z","1.2.6":"2013-05-24T16:16:29.617Z","1.2.7":"2013-12-11T17:23:40.683Z","1.3.0":"2013-12-11T21:05:28.848Z","1.3.1":"2013-12-12T11:37:33.521Z","1.3.2":"2013-12-12T16:08:22.154Z","1.3.3":"2014-01-21T20:22:03.830Z","1.3.4":"2014-02-12T03:58:35.479Z","1.3.5":"2014-02-14T05:38:27.341Z","1.3.6":"2014-06-06T16:45:56.584Z","1.3.7":"2014-06-25T02:20:13.078Z","1.3.8":"2014-07-03T07:25:41.674Z","1.4.0":"2014-08-23T01:02:50.510Z","1.4.1":"2014-08-31T13:55:19.033Z","1.4.2":"2014-09-05T00:01:58.304Z","1.5.0":"2014-09-23T06:39:05.598Z","1.5.1":"2014-10-09T11:27:25.454Z","1.5.2":"2014-11-14T04:44:01.209Z","1.5.3":"2014-12-06T15:24:06.139Z","1.6.0":"2015-02-09T07:45:18.751Z","1.7.0":"2015-03-24T23:45:59.345Z","1.7.1":"2015-05-07T17:04:22.574Z","1.7.2":"2015-10-11T02:49:28.505Z","1.8.0":"2015-11-22T09:28:17.215Z","1.9.0":"2016-04-06T00:42:01.373Z","1.10.0":"2016-04-20T02:41:22.728Z","1.12.0":"2017-01-28T02:28:34.575Z","1.13.0":"2021-05-01T11:25:09.479Z","1.13.1":"2021-05-01T21:22:29.163Z","1.13.2":"2022-01-29T08:14:42.606Z","1.13.4":"2022-09-18T06:50:02.914Z","2.0.0":"2022-11-18T05:30:34.545Z","2.0.1":"2022-12-26T18:36:30.743Z","3.0.0":"2023-09-23T05:43:15.776Z","3.0.1":"2025-01-02T19:08:18.398Z","3.0.2":"2025-01-07T20:04:22.353Z"},"contributors":[{"name":"Ryan Schuft","email":"ryan.schuft@gmail.com"},{"name":"Ben Lin","email":"ben@dreamerslab.com"},{"name":"Lance Pollard","email":"lancejpollard@gmail.com"},{"name":"Dane O'Connor","email":"dane.oconnor@gmail.com"},{"name":"David Miró","email":"lite.3engine@gmail.com"},{"name":"brandondewitt"},{"name":"luk3thomas"},{"name":"Marcel Klehr"},{"name":"Raymond Feng"},{"name":"Kane Cohen","email":"kanecohen@gmail.com"},{"name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},{"name":"Eric Brody"},{"name":"overlookmotel"},{"name":"Patrick Mowrer"},{"name":"Greger Olsson"},{"name":"Jason Crawford","email":"jason@jasoncrawford.org"},{"name":"Ray Myers","email":"ray.myers@gmail.com"},{"name":"Dillon Shook","email":"dshook@alumni.nmt.edu"},{"name":"Patrick Kuen","email":"p.kuen@cloudacy.com"}],"readmeFilename":"README.md","homepage":"https://github.com/dreamerslab/node.inflection#readme"}