{"_id":"just-handlebars-helpers","_rev":"45-47caeca275beec690bd4351d3e3c6b89","name":"just-handlebars-helpers","time":{"modified":"2022-06-19T07:25:34.189Z","created":"2016-02-18T07:09:12.762Z","1.0.0":"2016-02-18T07:09:12.762Z","1.0.1":"2016-02-18T07:35:03.269Z","1.0.2":"2016-02-18T07:38:27.298Z","1.0.3":"2016-02-18T07:42:56.466Z","0.0.1-0":"2016-02-18T08:11:49.262Z","0.1.0-0":"2016-02-23T10:11:35.731Z","0.1.1-0":"2016-02-23T10:47:40.996Z","0.5.0":"2016-03-18T18:00:03.828Z","1.0.4":"2016-04-08T16:23:52.002Z","1.0.5":"2016-04-11T05:57:57.612Z","1.0.6":"2016-04-12T10:14:43.847Z","1.0.7":"2016-04-18T09:09:32.145Z","1.0.8":"2016-05-11T04:00:50.291Z","1.0.9":"2016-05-23T15:13:21.680Z","1.0.10":"2016-06-10T08:25:41.239Z","1.0.11":"2016-06-28T08:44:32.314Z","1.0.12":"2017-04-08T11:02:57.333Z","1.0.13":"2017-04-19T18:46:33.194Z","1.0.14":"2018-06-07T06:38:12.413Z","1.0.15":"2019-07-05T15:14:06.326Z","1.0.16":"2019-08-07T05:05:53.928Z","1.0.17":"2019-10-26T07:20:46.023Z","1.0.18":"2020-07-28T04:41:55.179Z","1.0.19":"2022-01-28T11:01:28.972Z"},"maintainers":[{"name":"leapfrogsuperadmin","email":"superadmin@lftechnology.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"},{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"}],"dist-tags":{"latest":"1.0.19"},"description":"A lightweight package with common helpers for Handlebars","readme":"# Just Handlebars Helpers\n\n[![NPM Version](https://img.shields.io/npm/v/just-handlebars-helpers.svg?style=flat-square)](https://www.npmjs.com/package/just-handlebars-helpers)\n[![NPM Downloads](https://img.shields.io/npm/dt/just-handlebars-helpers.svg?style=flat-square)](https://www.npmjs.com/package/just-handlebars-helpers)\n[![Travis](https://img.shields.io/travis/leapfrogtechnology/just-handlebars-helpers.svg?style=flat-square)](https://travis-ci.org/leapfrogtechnology/just-handlebars-helpers)\n[![Codecov](https://img.shields.io/codecov/c/github/leapfrogtechnology/just-handlebars-helpers.svg?style=flat-square)](https://codecov.io/github/leapfrogtechnology/just-handlebars-helpers?branch=master)\n\nA lightweight package with common [Handlebars](https://github.com/wycats/handlebars.js) helpers.\n\n## Installation\n\n```bash\nnpm install just-handlebars-helpers --save\n```\n\n```bash\nyarn add just-handlebars-helpers\n```\n\n## Usage\n\n### Browser\n\n#### General Usage\n\n```html\n<!-- Load handlebars -->\n<script src=\"/path/to/handlebars/dist/handlebars.min.js\"></script>\n<!-- Load just-handlebars-helpers -->\n<script src=\"/path/to/just-handlebars-helpers/dist/h.min.js\"></script>\n\n<script type=\"text/javascript\">\n  // Register just-handlebars-helpers with handlebars\n  H.registerHelpers(Handlebars);\n</script>\n```\n\n#### Recommended Usage (CDN)\n\n```html\n<!-- Load handlebars -->\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.1.2/handlebars.min.js\"></script>\n<!-- Load just-handlebar-helpers -->\n<script src=\"https://unpkg.com/just-handlebars-helpers@1.0.19/dist/h.min.js\"></script>\n\n<script type=\"text/javascript\">\n  // Register just-handlebars-helpers with handlebars\n  H.registerHelpers(Handlebars);\n</script>\n```\n\n### Node\n\n```js\n// Require handlebars and just-handlebars-helpers\nconst Handlebars = require('handlebars');\nconst H = require('just-handlebars-helpers');\n\n// Register just-handlebars-helpers with handlebars\nH.registerHelpers(Handlebars);\n```\n\n## Helpers\n\n| Helper                              | Description                                           |\n| ----------------------------------- | ----------------------------------------------------- |\n| [eq](#eq)                           | Strict equality `===`                                 |\n| [eqw](#eqw)                         | Equality `==`                                         |\n| [neq](#neq)                         | Strict inequality `!==`                               |\n| [neqw](#neqw)                       | Inequality `!=`                                       |\n| [lt](#lt)                           | Less than `<`                                         |\n| [lte](#lte)                         | Less than or equal `<=`                               |\n| [gt](#gt)                           | Greater than `>`                                      |\n| [gte](#gte)                         | Greater than or equal `>=`                            |\n| [not](#not)                         | Not `!`                                               |\n| [ifx](#ifx)                         | Imitates conditional operator `?:`                    |\n| [empty](#empty)                     | Check if an array is empty                            |\n| [count](#count)                     | Length of an array                                    |\n| [and](#and)                         | Logical AND operation                                 |\n| [or](#or)                           | Logical OR operation                                  |\n| [coalesce](#coalesce)               | Returns first non-falsy value from list of parameters |\n| [includes](#includes)               | Check for a value inside an array                     |\n| [excerpt](#excerpt)                 | Extract a sub-string from a string                    |\n| [sanitize](#sanitize)               | Sanitize a string to url friendly dash/kebab case     |\n| [newLineToBr](#newlinetobr)         | Replace new line with line breaks `<br>` of a string  |\n| [capitalizeEach](#capitalizeeach)   | Capitalize the first letter of each word in a string  |\n| [capitalizeFirst](#capitalizefirst) | Capitalize the first letter of a string               |\n| [sprintf](#sprintf)                 | String produced according to the formatting format    |\n| [lowercase](#lowercase)             | String to lowercase                                   |\n| [uppercase](#uppercase)             | String to uppercase                                   |\n| [first](#first)                     | First element of an array                             |\n| [last](#last)                       | Last element of an array                              |\n| [concat](#concat)                   | Concatenate two or more strings                       |\n| [join](#join)                       | Join elements of an array using a delimeter           |\n| [sum](#sum)                         | Sum of two numbers                                    |\n| [difference](#difference)           | Difference of two numbers                             |\n| [multiplication](#multiplication)   | Multiplication of two numbers                         |\n| [division](#division)               | Division of two numbers                               |\n| [remainder](#remainder)             | Remainder of two numbers                              |\n| [ceil](#ceil)                       | Round a number upward to its nearest integer          |\n| [floor](#floor)                     | Round a number downward to its nearest integer        |\n| [abs](#abs)                         | Find the absolute value of a number                   |\n| [formatDate](#formatdate)           | Format date to specified format                       |\n| [showIf](#showif)                   | Show HTML element if expression is true               |\n| [hideIf](#hideif)                   | Hide HTML element if expression is true               |\n| [selectedIf](#selectedif)           | Select `<option>` if expression is true               |\n| [checkedIf](#checkedif)             | Check the `<input>` checkbox if expression is true    |\n| [options](#options)                 | Generate `<option>` list for `<select>`               |\n| [formatCurrency](#formatcurrency)   | Format currency value according to country            |\n\n### ⚠️\n\n> Helpers [formatDate](#datetime), [formatCurrency](#formatcurrency) and [sprintf](#sprintf) depend on an external dependency and it is up to the user to install these dependencies. Check the helper documentation for what dependencies to install.\n\n### Conditional\n\n#### eq\n\nDetermine whether or not two values are equal (===).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{eq '3' 3}}    => false\n\n{{#if (eq foo 'bar')}}\n\tHello\n{{/if}}\n```\n\n#### eqw\n\nDetermine whether or not two values are equal (==) i.e. weak checking.\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{eqw '3' 3}}   => true\n\n{{#if (eqw foo 'bar')}}\n\tHello\n{{/if}}\n```\n\n#### neq\n\nDetermine whether or not two values are not equal (!==).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{neq 4 3}}    => true\n\n{{#if (neq foo 'bar')}}\n\tHello\n{{/if}}\n```\n\n#### neqw\n\nDetermine whether or not two values are not equal (!=) weak checking.\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{neqw '3' 3}}    => false\n\n{{#if (neqw foo 'bar')}}\n\tHello\n{{/if}}\n```\n\n#### lt\n\nCheck for less than condition (a < b).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{lt 2 3}}   => true\n\n{{#if (lt 2 5)}}\n\tHello\n{{/if}}\n```\n\n#### lte\n\nCheck for less than or equals condition (a <= b).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{lte 2 3}}   => true\n\n{{#if (lte 5 6)}}\n\tHello\n{{/if}}\n```\n\n#### gt\n\nCheck for greater than condition (a > b).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{gt 2 3}}   => false\n\n{{#if (gt 10 7)}}\n\tHello\n{{/if}}\n```\n\n#### gte\n\nCheck for greater than or equals condition (a >= b).\n\nParameters:\n\n```\nvalue1 [any] First value to be compared with second. (Required)\nvalue2 [any] Second value to be compared with first. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{gte 3 3}}   => true\n\n{{#if (gte 10 2)}}\n\tHello\n{{/if}}\n```\n\n#### not\n\nLogical NOT of any expression. Equivalent to `!` operator.\n\nParameters:\n\n```\nexpression [any] Any expression.\n```\n\nReturns `boolean`\n\nUsage:\n\n```\n{{not true}}    => false\n{{not false}}   => true\n\n{{#if (not (eq foo 'bar'))}}\n\tHello\n{{/if}}\n```\n\n#### ifx\n\nHelper to imitate the ternary conditional operator ?:. E.g. `5 > 7 ? 'foo' : 'bar'`.\n\nParameters:\n\n```\ncondition [boolean] Satisfying condition for getting first value. Either true of false. (Required)\nvalue1 [any] First value to be displayed as result. (Required)\nvalue2 [any] Second value to be displayed as result. Defaults to an empty string (Optional)\n```\n\nReturns `any`\n\nUsage:\n\n```\n{{ifx true 'Foo' 'Bar'}}        => Foo  // return (true) ? 'Foo' : 'Bar'\n{{ifx false 'Foo' 'Bar'}}       => Foo  // return (false) ? 'Foo' : 'Bar'\n{{ifx (eq value 1) 5 6}}        => 6    // return (value === 1) ? 5 : 6\n{{ifx (not (eq value 1)) 5 6}}  => 6    // return (value !== 1) ? 5 : 6\n\n<!-- The third parameter is optional, and by default it will be blank string ('') -->\n{{ifx true 'active'}}  => 'active'\n{{ifx false 'active'}}  => ''\n```\n\n#### empty\n\nCheck if an array is empty.\n\nParameters:\n\n```\narray [array] Array/object to be checked. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\nvar array = [5, 6];     // An array.\n{{empty array}} => false\n\n{{#if (empty array)}}\n\tHello\n{{/if}}\n```\n\n#### count\n\nDetermine the length of an array. Equivalent to `array.length` operator in JavaScript.\n\nParameters:\n\n```\narray [array] Array whose elements to be counted. (Required)\n```\n\nReturns `number|false`\n\nUsage:\n\n```\nvar array = [5, 6];    // An array.\n{{count array}} =>  2;\n```\n\n#### and\n\nReturns the logical AND of two or more parameters passed i.e\nit is true iff all the parameters are true.\n\nParameters:\n\n```\nparams [any] Any number of boolean parameters. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\nvar value1 = value2 = true;\n{{and value1 value2}}    => true\n\nvar value1 = false, value2 = true;\n{{and value1 value2}}    => false\n\n{{#if (and value1 value2)}}\n    // do something\n{{else}}\n    // do something else\n{{/if}}\n```\n\n#### or\n\nReturns the logical OR of two or more parameters passed i.e\nit is true if any of the parameters is true.\n\nParameters:\n\n```\nparams [any] Any number of boolean parameters. (Required)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\nvar value1 = true, value2 = false;\n{{or value1 value2}}    => true\n\nvar value = value2 = false;\n{{or value1 value2}}    => false\n\n{{#if (or value1 value2)}}\n    // do something\n{{else}}\n    // do something else\n{{/if}}\n```\n\n#### coalesce\n\nReturns the first non-falsy value from the parameter list.\nWorks quite similar to the SQL's COALESCE() function, but unlike this\nchecks for the first non-false parameter.\n\nParameters:\n\n```\nparams [any] Any number of parameters. (Required)\n```\n\nReturns `any`\n\nUsage:\n\n```\nvar fullName = 'Foo Bar', nickName = 'foob';\n{{coalesce fullName nickName 'Unknown'}}    => 'Foo Bar'\n\nvar fullName = '', nickName = 'foob';\n{{coalesce fullName nickName 'Unknown'}}    => 'foob'\n```\n\n#### includes\n\nReturns true if an array includes a value.\nIt checks for the existence of the value in array strictly(value + data type) by default.\nCan check non-strictly(value only) by sending third argument as false.\n\nParameters:\n\n```\nparams [array] The array. (Required)\nparams [any] The value to be checked for existence in the array. (Required)\nparams [boolean] FALSE for non-strict checking. TRUE by default. (Optional)\n```\n\nReturns `boolean`\n\nUsage:\n\n```\nvar array = [1, 2, 3];\nvar value = 2;\n\n{{includes array value}}        => true\n\nvar value = '2'\n{{includes array value}}        => false\n{{includes array value true}}   => false\n{{includes array value false}}  => true\n\n{{#if (includes array value)}}\n   <!-- Do something -->\n{{/if}}\n\n{{ifx (includes array value) 'Yes' 'No'}}\n```\n\n### Strings\n\n#### excerpt\n\nExtract a sub-string from a string.\n\nParameters:\n\n```\nstring [string] The string from which characters are to be extracted. (Required)\nlength [int] Number of characters to be extracted from string. Default value is 50. (Optional)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{excerpt 'Just Wow' 4}} => 'Just...'\n```\n\n#### sanitize\n\nConverts a string to URL friendly dash-case string removing special characters.\n\nParameters\n\n```\nstring [string] The string to be converted to URL. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{sanitize 'JuSt #Wow'}} => 'just-wow'\n```\n\n#### newLineToBr\n\nReplace `\\n` with `<br>` tags.\n\nParameters:\n\n```\nstring [string] The string that needs replacement of \\n by <br> tags. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{{newLineToBr 'newLineToBr helper \\n is very \\n useful.'}}}    => newLineToBr helper <br> is very <br> useful.\n```\n\n#### capitalizeEach\n\nCapitalize the first letter of each word in a string.\n\nParameters\n\n```\nstring [string] The sentence/string to be capitalized. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{capitalizeEach 'just wow'}} => 'Just Wow'\n```\n\n#### capitalizeFirst\n\nCapitalize the first letter of a string.\n\nParameters:\n\n```\nstring [string] The sentence/string to be capitalized. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{capitalizeFirst 'just wow'}} => 'Just wow'\n```\n\n#### sprintf\n\n`sprintf` helper sends formatted data as string output.\n\n**Note:** To use `sprintf` helper install [sprintf-js](https://www.npmjs.com/package/sprintf-js).\n\n`npm install sprintf-js --save`\n\nParameters:\n\n```\nformat [string] The message/string that uses different formats of variables. (Required)\nargs [arbitrary arguments] Any number of parameters/values. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{sprintf '%s %s!' 'Hello' 'Kabir' }}\n{{sprintf '%s %s %d %s %d' 'Foo' 'Bar' 55 'Baz' '20'}}\n{{sprintf '%(greeting)s %(name)s! How are you?' obj }}\n{{sprintf '%(greeting)s %(name)s! ' greeting='Hello' name='Kabir'}}\n```\n\n#### lowercase\n\nChanges the string to lowercase.\n\nParameters:\n\n```\nparam [string] The string to be converted to lower case. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{lowercase 'JUST WOW!!!'}} => 'just wow!!!'\n```\n\n#### uppercase\n\nChanges the string to uppercase.\n\nParameters:\n\n```\nparam [string] The string to be converted to upper case. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{uppercase 'just wow!!!'}} => 'JUST WOW!!!'\n```\n\n#### first\n\nGet the first element of a collection/array.\n\nParameters:\n\n```\ncollection [array] The collection/array of objects(strings, integers). (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\nsomeArray = ['David', 'Miller', 'Jones'];\n{{first someArray}} => 'David'\n```\n\n#### last\n\nGet the last element of a collection/array.\n\nParameters:\n\n```\ncollection [array] The collection/array of objects(strings, integers). (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\nsomeArray = ['David', 'Miller', 'Jones'];\n{{last someArray}} => 'Jones'\n```\n\n#### concat\n\nConcat two or more strings.\n\nParameters:\n\n```\nparams [arguments] Any number of arguments. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{concat 'Hello' ' world' '!!!'}} => 'Hello world!!!'\n```\n\n#### join\n\nJoin the elements of an array using a delimeter.\n\nParameters:\n\n```\narray [array] An array of elements to be joined. (Required)\ndelimeter [string] The delimeter using which the elements of array are to be joined. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\nsomeArray = ['Hands', 'legs', 'feet'];\n{{join someArray ' & '}}   => 'Hands & legs & feet'\n```\n\n### Math\n\n#### sum\n\nA `sum` helper calculating the sum of two numbers.\n\nParameters:\n\n```\nvalue1 [number] First number. (Required)\nvalue2 [number] Second number. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{sum 1 2}}     => 3\n{{sum 5.6 6.7}} => 12.3\n```\n\n#### difference\n\nA `difference` helper calculating the difference of two numbers.\n\nParameters:\n\n```\nvalue1 [number] First number. (Required)\nvalue2 [number] Second number. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{difference 5 2}}      => 3\n{{difference 7.2 3.4}}  => 3.8\n```\n\n#### multiplication\n\nA `multiplication` helper calculating the multiplication of two numbers.\n\nParameters:\n\n```\nvalue1 [number] First number. (Required)\nvalue2 [number] Second number. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{multiplication 5 2}}      => 10\n{{multiplication 5.2 6.4}}  => 33.28\n```\n\n#### division\n\nA `division` helper calculating the division of two numbers.\n\nParameters:\n\n```\nvalue1 [number] First number. (Required)\nvalue2 [number] Second number. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{division 4 2}}      => 2\n{{division 5.2 1.6}}  => 3.25\n```\n\n#### remainder\n\nA `remainder` helper calculating the remainder of two numbers.\n\nParameters:\n\n```\nvalue1 [number] First number. (Required)\nvalue2 [number] Second number. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{remainder 5 3}}      => 2\n{{remainder 5.2 2.5}}  => 0.20000000000000018\n```\n\n#### ceil\n\nA `ceil` helper to find the ceil value of the number. Equivalent to `Math.ceil()` in JavaScript.\n\nParameters:\n\n```\nvalue1 [number] Number to be rounded to nearest greater integer. (Required)\n```\n\nReturns `integer`\n\nUsage:\n\n```\n{{ceil 5.6}}    => 6\n```\n\n#### floor\n\nA `floor` helper to find the floor value of the number. Equivalent to `Math.floor()` in JavaScript.\n\nParameters:\n\n```\nvalue [number] Number to be rounded to nearest lower integer. (Required)\n```\n\nReturns `integer`\n\nUsage:\n\n```\n{{floor 5.6}}   => 5\n```\n\n#### abs\n\nAn `abs` helper to find the absolute value of the number. Equivalent to `Math.abs()` in JavaScript.\n\nParameters:\n\n```\nvalue [number] Number to perform absolute value operation on. (Required)\n```\n\nReturns `number`\n\nUsage:\n\n```\n{{abs -5.6}}   => 5.6\n```\n\n### DateTime\n\n**Note:** To use DateTime helpers install [moment](https://www.npmjs.com/package/moment).\n\n`npm install moment --save`\n\n#### formatDate\n\nA `formatDate` helper to format date using moment.js\n\nParameters:\n\n```\nformatString [string] Format string based on moment.js (Required)\ndate [date] The date/date-time that needs to be formatted. (set to current Date() if not provided)\nlocaleString [string] ISO 3166-1 locale code represented in https://github.com/moment/moment/tree/develop/locale \nor an array of possible locale codes, of which moment will use the first one it has a localization for.\n```\n\nReturns `string`\n\nUsage:\n\n```\nvar date = new Date();      // Date | Date-time\n{{formatDate 'MM/DD/YYYY' date}}\n\nvar date = new Date('01/22/2016');\nvar possibleI8nCodes = ['xy', 'aa', 'de'];\n{{formatDate 'YYYY-MM-DD' date}}    => 2016-01-22\n{{formatDate 'LLLL', date, 'es'}}    => 'viernes, 22 de enero de 2016 0:00'\n{{formatDate 'LLLL', date, possibleI8nCodes}}    => 'Freitag, 22. Januar 2016 00:00'\n```\n\n### HTML\n\n#### showIf\n\nA `showIf` helper for showing any HTML element.\n\nParameters:\n\n```\nexpression [boolean] Condition to be checked. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{showIf true}}     => ''\n{{showIf false}}    => 'hidden'\n```\n\n#### hideIf\n\nA `hideIf` helper for hiding any HTML element.\n\nParameters:\n\n```\nexpression [boolean] Condition to be checked. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{hideIf true}}     => 'hidden'\n{{hideIf false}}    => ''\n```\n\n#### selectedIf\n\nA `selectedIf` helper for dropdown and radio boxes.\n\nParameters:\n\n```\nexpression [boolean] Condition to be checked. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{selectedIf true}}     => 'selected'\n```\n\n#### checkedIf\n\nA `checkedIf` helper for checkboxes.\n\nParameters:\n\n```\nexpression [boolean] Condition to be checked. (Required)\n```\n\nReturns `string`\n\nUsage:\n\n```\n{{checkedIf true}}      => 'checked'\n```\n\n#### options\n\nAn `options` helper for generating `<option>` list for `<select>` dropdowns.\n\nParameters:\n\n```\ndata [array] List of data (Required)\nid [string] Name of identifier key from the data list, defaults to id (Optional)\ntext [string] Name of description key from the data list, defaults to description (Optional)\nselected [string] Id to be set as selected (Optional)\n```\n\nUsage:\n\n```\n{{{options data}}}\n{{{options data selected=\"value\"}}}\n{{{options data id=\"id\" text=\"description\"}}}\n```\n\nA simple example:\n\n```\nconst data = [\n    {\n        id: 1,\n        description: 'Foo'\n    },\n    {\n        id: 2,\n        description: 'Bar'\n    },\n    {\n        id: 3,\n        description: 'Foo Bar'\n    }\n];\n```\n\n```\n{{{options data selected=\"2\"}}}\n```\n\nwill generate HTML:\n\n```\n<option value=\"1\">Foo</option>\n<option value=\"2\" selected>Bar</option>\n<option value=\"3\">Foo Bar</option>\n```\n\nYou can also override the default key names for `id` & `description` using the `id` & `text` options in the helper.\n\n```\nconst data = [\n    {\n        value: 1,\n        text: 'New York'\n    },\n    {\n        value: 2,\n        text: 'London'\n    }\n];\n```\n\n```\n{{{options data selected=\"1\" id=\"value\" text=\"text\"}}}\n```\n\nwill generate HTML:\n\n```\n<option value=\"1\" selected>New York</option>\n<option value=\"2\">London</option>\n```\n\n### Formatters\n\n#### formatCurrency\n\nFormat the currency value according to country code and locale.\n\n**Note:** To use the `formatCurrency` helper install [currencyformatter.js](https://www.npmjs.com/package/currencyformatter.js).\n\n`npm install currencyformatter.js --save`\n\nParameters:\n\n```\nvalue [number] The numerical value of currency. (Required)\nargs [arbitrary arguments] The currency formatting parameters. (Optional)\n```\n\nReturns: `string`\n\nUsage:\n\n```\n{{formatCurrency 1234567.89 code='USD'}}  => $1,234,567.89\n{{formatCurrency 1234567.89 code='EUR'}}  => 1.234.567,89 €\n{{formatCurrency 1234567.89 code='EUR' locale=\"en\"}}  => €1,234,567.89\n```\n\nNote: The currency formatting parameters are used from [https://github.com/osrec/currencyFormatter.js](https://github.com/osrec/currencyFormatter.js).\n\n## Contributing\n\nProject participants should adhere to the [Code of Conduct](CODE_OF_CONDUCT.md). If you are unsure about how to contribute please file an [issue](https://github.com/leapfrogtechnology/just-handlebars-helpers/issues/new).\n\nStart here: [src/H.js](src/H.js)\n\n```bash\n# Install dependencies\n$ yarn\n\n# Lint source code\n$ yarn lint\n\n# Compile everything\n$ gulp\n\n# Run all the tests\n$ yarn test\n```\n\n## Inspired by\n\n- [Swag](https://github.com/elving/swag)\n- [Dashbars](https://github.com/pismute/dashbars)\n- [Assemble](https://github.com/assemble/handlebars-helpers)\n\n## Change Log\n\nCheck the [CHANGELOG](CHANGELOG.md) for change log and release history.\n\n## License\n\nLicensed under [The MIT License](LICENSE.md).\n","versions":{"0.0.1-0":{"name":"just-handlebars-helpers","version":"0.0.1-0","description":"Handlebars Helpers","main":"index.js","dependencies":{"handlebars":"^4.*"},"devDependencies":{"babelify":"^7.2.0","browserify":"^13.0.0","gulp":"^3.9.1","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","phantomjs-prebuilt":"^2.1.4","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabeer182010@gmail.com"},"license":"MIT","gitHead":"26a293d8c22013da3b60da16dc7d7675eb93d0f0","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@0.0.1-0","_shasum":"f5ae8cb5f91024f27561cc65c7dc707bbe5f554c","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},"dist":{"shasum":"f5ae8cb5f91024f27561cc65c7dc707bbe5f554c","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-0.0.1-0.tgz","integrity":"sha512-Wc7m0GSj3LB7asZKtaBUiE/N7d4esybhZHg0iFcTc8TzY4IBUP2wfLp1LrkVxDpE2Rm+VaMj9Cq6PVR0Gw3Sbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQGokrtAtdnixqqL39AtEBalpJWXvuCJjbiXIQh0axLAIgDll14TWqSN3I7tMwOhUteD5Hn4DObSqHM3q0+dOBNkA="}]},"maintainers":[{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-0.0.1-0.tgz_1455783106950_0.5224760833662003"},"directories":{}},"0.1.0-0":{"name":"just-handlebars-helpers","version":"0.1.0-0","description":"Handlebars Helpers","main":"index.js","dependencies":{"handlebars":"^4.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","eslint":"^2.2.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","phantomjs-prebuilt":"^2.1.4","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabeer182010@gmail.com"},"license":"MIT","gitHead":"306943cd7cdd12050e0d54347504ee402fc0f11c","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@0.1.0-0","_shasum":"cb4e4bb649ba0cc47feeb8db1f70dbd80ec05c87","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},"dist":{"shasum":"cb4e4bb649ba0cc47feeb8db1f70dbd80ec05c87","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-0.1.0-0.tgz","integrity":"sha512-DTScWFxzsRZUDJQ86bFlTB/VjjSjYGdb1ONCavwcM2jMDM3D2oWmjMppTwthDYV3kYWAkkyGVkEJRpHTyEnSYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQLeFLha7a1ki1MVISlvD0ubMAkVyb4gD/S1hHKext9gIgKYM5EgcbkvYl4lbLgaORgWbNqD/tCHB5IRYroeIqi7U="}]},"maintainers":[{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-0.1.0-0.tgz_1456222290149_0.610167303821072"},"directories":{}},"0.1.1-0":{"name":"just-handlebars-helpers","version":"0.1.1-0","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^4.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","eslint":"^2.2.0","gulp":"^3.9.1","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","phantomjs-prebuilt":"^2.1.4","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"b6335cd45a1f4182527fcb74f076f53b06e9f044","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@0.1.1-0","_shasum":"db04488d029e583572b3ec4f21df705004798cb8","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},"dist":{"shasum":"db04488d029e583572b3ec4f21df705004798cb8","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-0.1.1-0.tgz","integrity":"sha512-K7BpSpcdOt26+vpDyalrKqejQJfYifi79olu5NIUGmFNuGqpjlJexOpAU/jluMM3Qfv6xV9TjjJfLVnOgbNDBg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH0npAtQ6HtWmWHblB3PO1gPBOB8c4HYbPc5sIxNt00qAiBAhOg0JsjzaqLeuE5UQ4IIgIaFdvP4hwFsf1D8bgJb9w=="}]},"maintainers":[{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-0.1.1-0.tgz_1456224455913_0.3412832012400031"},"directories":{}},"0.5.0":{"name":"just-handlebars-helpers","version":"0.5.0","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"ec4a222f2597e07c5e8035089651da33b4c3a2cf","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@0.5.0","_shasum":"c6cbb021a80b9e66c49dbfa55d9c858b5cb36851","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"c6cbb021a80b9e66c49dbfa55d9c858b5cb36851","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-0.5.0.tgz","integrity":"sha512-otIDsIYXpndgW3EPN/bnZGi9Z/8LflXMojsEWe2jUiVLqig+/5FwdvxOifmKj7EkvhMT2LRtp07MqAf7UnjyYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRZiT9ST+hIQuXkrxdXG0IeXXZ7+hnH5+Rhx+1bHofCgIgD/JTcuqEXfX9dNT2EU9IF5xWad3ElGnYQAiyVbqmwO4="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-0.5.0.tgz_1458324003292_0.9977107744198292"},"directories":{}},"1.0.4":{"name":"just-handlebars-helpers","version":"1.0.4","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"adbcb5d9eb7d15922c64d3e54b9c9e81d826e66e","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.4","_shasum":"817e32c798602fc7bdf9fa9ba1d2418195eaa329","_from":".","_npmVersion":"3.8.5","_nodeVersion":"5.4.0","_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"dist":{"shasum":"817e32c798602fc7bdf9fa9ba1d2418195eaa329","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.4.tgz","integrity":"sha512-0u0S4ki8CYQ1sHS0xPra/wIN4/gyOceatkC5ta7aPBS7OA55VpVgyG3C0Tkj0OD2p8ih16SmZnf3ftkLTzIanQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDhl9FFf/XcC6GG0kxrWyve4gF87xjp5DRaWq968kTQUAiArQntG2E+GcysblA+I3ONWj1JiNpKDyPZJSHUOeCnR5A=="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.4.tgz_1460132631446_0.18456180929206312"},"directories":{}},"1.0.5":{"name":"just-handlebars-helpers","version":"1.0.5","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"d4b44b9765a7c99ccafc290edf81cab46b17ad39","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.5","_shasum":"beb2fd6052eed171d9f717a9847b040171ae97a1","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"beb2fd6052eed171d9f717a9847b040171ae97a1","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.5.tgz","integrity":"sha512-bz98lHEjYoWLTC2E6lj7Hq7yankRV98cZbi/MmoHEvE/kvSPhWWS9QgaUY20DDxhvJDx1PbbCZIaHHPsA1LMYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSXJi1WNCvCIkFQxjC9rgG36AsekvHZ7xlmInaODqFzAIhANtVWRVB2HUk7t5auoLCi5J5TzmTooe8Rdoj+3Oprn/I"}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.5.tgz_1460354275006_0.13400205876678228"},"directories":{}},"1.0.6":{"name":"just-handlebars-helpers","version":"1.0.6","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"4676f432d76e722d2755dcc0fe6396dafc502e12","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.6","_shasum":"62fc30dcf1ed180d9092ae59a09911a0fd13501a","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"62fc30dcf1ed180d9092ae59a09911a0fd13501a","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.6.tgz","integrity":"sha512-9QPzYtf1M3kjRzcrGSgUcjxgFUYWPbE/OtZneN6yHWLghuRceSx8QyU6NFok+8XDHcQu/fmhu4yi9+Z2m2zxjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6TGz2nozGRjZSR4ZC6SInB795JSpSfQ4gq4tPpBqqVAIgGr9D91+d5i28mrPD9Cx+kK1rL0Pk2aBFh/w+meHxzbY="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.6.tgz_1460456083309_0.5114360577426851"},"directories":{}},"1.0.7":{"name":"just-handlebars-helpers","version":"1.0.7","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"0a7867dc4b77ec0a3370e36cd9990da173f14464","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.7","_shasum":"583fd4dba6cd464529756e2897f2cb82664a3b09","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"583fd4dba6cd464529756e2897f2cb82664a3b09","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.7.tgz","integrity":"sha512-Y69I/UceWXF+7yawNn+8ztJ4kYXZ03F4BUuTGW2DLBEyYURtCscy91SoVkWGXxo+w13fyRDy0Osu3BY73H+0+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9EPLqTgd9ucEPZsIWNkB2uV2ZB8MJgds+76zNUNPN3gIhAN2XeUnFCVAxpoGfCZsCqUW/8rWRHJG9pgxBj2URdOVg"}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.7.tgz_1460970571751_0.2814392016734928"},"directories":{}},"1.0.8":{"name":"just-handlebars-helpers","version":"1.0.8","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"75aa4843cb59437794bf3009c45a2c3a5c50d745","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.8","_shasum":"82d0144d056e0dc52a17a04ca8e7d187fe985464","_from":".","_npmVersion":"3.8.5","_nodeVersion":"5.4.0","_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"dist":{"shasum":"82d0144d056e0dc52a17a04ca8e7d187fe985464","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.8.tgz","integrity":"sha512-rtbZ532wmOdE9zpudSw36N7+C+6kiOmaKKZyaUKRTlLXRdDcU50T4CPHqzZFfDSymKvc+YoF6VjB2H7yvhtMvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC0GXX9jzIGp3wLM3JLdgMo2XjOJX1A6QGGBiAvojkmLAiAdVFNSfND7WpJlQG1yAKbxD+BtGBUofBNVM334kTg0sw=="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.8.tgz_1462939247665_0.18413363699801266"},"directories":{}},"1.0.9":{"name":"just-handlebars-helpers","version":"1.0.9","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"b825e0bd1a3ea266a21b202a0a87eb8429377d31","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.9","_shasum":"891f5ee9d70749f33d8aae854138c01ea54d6041","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"891f5ee9d70749f33d8aae854138c01ea54d6041","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.9.tgz","integrity":"sha512-HnznojRlPAvKTPPMGxyq2jyJqhsA0GMcVXyYmbsV25Gi2hrle7dZivJcw/x/BmvhSQoSCqEI5efeO0k46Sd/6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCs3zox3Vb7Lg0+1Fnx+TMvD5rVlgndtfz661f5HgBPDQIgWtfWBofhwYHBle+WJ2wWstrT6AirPZ3xe2VOTPxVTGw="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.9.tgz_1464016401243_0.42802701191976666"},"directories":{}},"1.0.10":{"name":"just-handlebars-helpers","version":"1.0.10","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","prepublish":"gulp --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"7449fde037357b345e611fd4f38175a0265aa5dc","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.10","_shasum":"ca0a33c673292c32b9ab51326bea101d05cb0e6b","_from":".","_npmVersion":"3.8.5","_nodeVersion":"5.4.0","_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"dist":{"shasum":"ca0a33c673292c32b9ab51326bea101d05cb0e6b","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.10.tgz","integrity":"sha512-KnwqOzIEADS9C5HTKXE6ItbcpDKQzKwp5GYQIK+Sa/jmOKZvXsqH8HcUS7Q6hozY7tuPvUzMq/zjJSmwdyV23w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcapGDq99Hd+XOqyIWJQ2Tlav/OX2G4GQcY3WIvtzHJAIgfxxTNpiDOtQQwA87VVgtVl/VrZQ/2mkj3+HuaYQ0NE4="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.10.tgz_1465547137387_0.42623707302846014"},"directories":{}},"1.0.11":{"name":"just-handlebars-helpers","version":"1.0.11","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^5.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"*","codecov":"^1.0.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","start:testing":"karma start","build":"gulp","prepublish":"npm run build --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"d9f9e94311de67c4671dc85b00cb89d34ee1db7c","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.11","_shasum":"039ed37779e28274d868be15b6d94b178f81fd43","_from":".","_npmVersion":"3.8.5","_nodeVersion":"5.4.0","_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"dist":{"shasum":"039ed37779e28274d868be15b6d94b178f81fd43","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.11.tgz","integrity":"sha512-338CV984CtQEfJh66kZvk/HNDzQoyPuBtslHHOuirSxmTAAnrO32KMkEEMmrH6oWrLRVPWhEFqt6gxXUHTXqCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDw0V6XL4vFavraXdaDwPJvegOfIXmp1z27s27XXOPapgIgfL3/Xl/2XYdAaf54oWtBOPhtd21E2kWsZFnGk8QUdfE="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.11.tgz_1467103469857_0.7621873440220952"},"directories":{}},"1.0.12":{"name":"just-handlebars-helpers","version":"1.0.12","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^6.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"0.1.0-0","codecov":"^1.0.1","currency-formatter":"^1.1.1","eslint":"2.2.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","codecov":"cat coverage/*/lcov.info | codecov","start:testing":"karma start","build":"gulp","prepublish":"npm run build --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"8e0c0132e37d8e71dbddf565e68034c80aba58f6","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.12","_shasum":"004fc0bef0b233c5aa2db1bfe8e62dafa275289c","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.4","_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"dist":{"shasum":"004fc0bef0b233c5aa2db1bfe8e62dafa275289c","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.12.tgz","integrity":"sha512-phDr2U0/5VfC0wkOG+08DavjwvFslA6FegBQDMhzJovKtVj5XKQ71a9QNbiJBmc8HoUXgo7MgVTmBq5zRnXCgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8R/EYiOxdgzRxxnhQIzjRy55LMUdjUBGul30kxemGWwIgEFIBPF3EmKIqQFOH39vzlHMwEXyXjS9HvmCEI6j5XAI="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabeer182010@gmail.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.12.tgz_1491649375207_0.022381235379725695"},"directories":{}},"1.0.13":{"name":"just-handlebars-helpers","version":"1.0.13","description":"A lightweight package with common helpers for Handlebars","main":"index.js","dependencies":{"handlebars":"^3.*"},"devDependencies":{"babel-eslint":"^6.0.0","babel-preset-es2015":"^6.5.0","babelify":"^7.2.0","browserify":"^13.0.0","browserify-istanbul":"^0.2.1","browserify-shimify":"0.1.0-0","codecov":"^1.0.1","currencyformatter.js":"^1.0.4","eslint":"2.2.0","faker":"^4.1.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-eslint":"^2.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^1.5.2","isparta":"^4.0.0","istanbul":"^0.4.2","jasmine-core":"^2.4.1","karma":"^0.13.21","karma-browserify":"^5.0.1","karma-coverage":"^0.5.3","karma-jasmine":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","karma-spec-reporter":"0.0.24","moment":"^2.11.2","phantomjs-prebuilt":"^2.1.4","rimraf":"^2.6.1","sprintf-js":"^1.0.3","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0"},"scripts":{"test":"karma start --single-run --browsers PhantomJS","lint":"gulp lint","codecov":"cat coverage/*/lcov.info | codecov","start:testing":"karma start","clean":"rimraf dist/ lib/","build":"npm run clean && gulp","prepublish":"npm run build --silent"},"repository":{"type":"git","url":"git+https://github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"license":"MIT","gitHead":"2c312d1f4b935d76b80b6a2261e71eb575440ab3","bugs":{"url":"https://github.com/leapfrogtechnology/just-handlebars-helpers/issues"},"homepage":"https://github.com/leapfrogtechnology/just-handlebars-helpers#readme","_id":"just-handlebars-helpers@1.0.13","_shasum":"2c591a2aa49616d4688ae4a89955f6f32e5d12e2","_from":".","_npmVersion":"4.0.2","_nodeVersion":"7.8.0","_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"dist":{"shasum":"2c591a2aa49616d4688ae4a89955f6f32e5d12e2","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.13.tgz","integrity":"sha512-Rrhhac/qP1/VKDzF4T4IxoE9qJctOzXHUETVjPQZycmYaXWGlfwBmy/nJrVNLpXj7ZyDwOVCEz07vVE8v1LASA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmikfWSt4GgXa93zubHkJbY7heIrz9/CQqTG9IoB3ScQIgQ3NRkLIvc1b+CNDSlCEbGzQD7gJ+WMch7wjghEHSbYY="}]},"maintainers":[{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"},{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},{"name":"leapfrogsuperadmin","email":"superadmin@lftechnology.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/just-handlebars-helpers-1.0.13.tgz_1492627592851_0.5709704025648534"},"directories":{}},"1.0.14":{"name":"just-handlebars-helpers","version":"1.0.14","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"files":["lib","dist"],"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"peerDependencies":{"handlebars":">= 3.*"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-es2015":"^6.24.1","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.4","eslint":"^4.19.1","eslint-config-leapfrog":"^1.0.1","faker":"^4.1.0","gulp":"^3.9.1","gulp-babel":"^7.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","handlebars":"^4.0.11","isparta":"^4.0.0","jasmine-core":"^2.4.1","karma":"^2.0.2","karma-browserify":"^5.2.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"npm run clean && gulp"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016 Leapfrog Technology Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"just-handlebars-helpers@1.0.14","dist":{"shasum":"3cd40d24f26b371c261472cdd65a2ebcfe24de52","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.14.tgz","fileCount":19,"unpackedSize":121790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGNLVCRA9TVsSAnZWagAAn3oQAKQxnL4YD+fYUDvktBl3\nimsruMSwfpAQBT7NUj6CScEfq2WYl3C669d/aRivVyZvfgodvWwUA3Octhju\nDlnQG0oOrjkX+I7uKtdlPayPYU0xykEF4fiS/kLF3Nixhp7zXAjDRfNL5kIj\n3WtDRpMg4iBqjBlnK0XsIlHo0CF+EupDXJ3MqPfmpdd1Grru6JkY2uHHhgmW\nduIRGzerY/OaHtJAULQOT1sp3N4en+l5csQwrXbr+IueUYCESi9Ilgi0rrlz\n3y6U1tnU/u9etukkMyivBebXkm+eROcTJ+mGv2cA0p9eXZEbooC05utFfhZl\nJ1Y3HcUAU94sNLYU1AtndxidyHt9nPXSwdBxdlDNHTGRERsuzPCcTAFGPVAJ\nZ6TStl6hjC9flLGkG33gT7mR3RcHZc2vqsQf9x52dvj6CzEQOW47wdSwRDze\nxS6uZZ905SHBTrHngnyV7TKhKE8+mCNKa5mrAHIic+lgkq0u1maIaj+cKjE9\nDbst31u86FSrY3pvaUczOQVuW6rRzCbxCNdFVCvJWPs+6g6WZ11NtyQyF8j9\nbwbqjekxpkUpd1u+TSq/OhpgNH+kJCYDmxOu+86aPg3jLVUmu+LGfNYpnTOD\nB/VudMwUE8GdF0XKQuUBEE2y2b5Jto8I1MAf/HnSSx+YKR4p/09m8HpdlYD5\nhcbq\r\n=JFaR\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-FAEjH1rHELuYl976InCFD2q8UUBNEKwnXEyv8DJy1M6RTyx9hZ8gdYZeFvnFI9F/VyypmigXPXBCn5KEJVnonw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2nhjO6ztXgjF4NyrgFgbWrzcMwf0LEC9wrORyWh6pzQIgF4aNr6kxJGNVs9HUHrxijxeyOpQDjEaAO41O5eYfE9U="}]},"maintainers":[{"email":"gurung.suman15@gmail.com","name":"gurungsuman15"},{"email":"kabirbaidhya@gmail.com","name":"kabirbaidhya"},{"email":"superadmin@lftechnology.com","name":"leapfrogsuperadmin"},{"email":"mesaugat@gmail.com","name":"mesaugat"},{"email":"mjsanish@gmail.com","name":"mjsanish"},{"email":"pratishshr@gmail.com","name":"pratishshr"},{"email":"rtrromitamgai@gmail.com","name":"romitamgai"},{"email":"binarysanjeev@gmail.com","name":"sanjeevkpandit"}],"_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.14_1528353492343_0.1523482219627339"},"_hasShrinkwrap":false},"1.0.15":{"name":"just-handlebars-helpers","version":"1.0.15","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"peerDependencies":{"handlebars":">= 3.*"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.4","eslint":"^4.19.1","eslint-config-leapfrog":"^1.0.1","faker":"^4.1.0","gulp":"^4.0.0","gulp-babel":"^7.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","handlebars":"^4.0.11","isparta":"^4.0.0","jasmine-core":"^2.4.1","karma":"^4.1.0","karma-browserify":"^5.2.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"yarn clean && gulp"},"gitHead":"c61ac25fb73cf8bf28dfedc9d655b40979261c8f","_id":"just-handlebars-helpers@1.0.15","_nodeVersion":"8.15.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-zhQK3FpcgTaU6nNbhP7cq8uO+hLoOn+2+7tvupx+jLvZWwLPUhYJONr64YA/X+8GiLt0chC8+Wlhbb8WKOzfWw==","shasum":"5e1221352f8f36385d88e1c48f30b3e520a6e08a","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.15.tgz","fileCount":15,"unpackedSize":142206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdH2k+CRA9TVsSAnZWagAAtmwP/iih3I/6tZxwB9yu8xOj\ngV54qqLxRztgRf6USUWso1ibJivMYeMpzvkIgZpmJxyhBXDlqwjawgstvYJW\nQgIuTsYv7S6xjME/m2tHywDh57jgL39QxvJzT0rA1OD7NmaI6FTLEc0DRchL\nRBnqplP66zY09QSCdvB25BojYj4wpErDBiVuAFOraFVmw74VfKDM7+puXJ3y\nkERS+aSUbCDKtN2VsSGlbDuE1dyumu5vmv+efLN9IFXzBJPpflpTs5u6Oxbx\nGeJXuXXQb3gi+wr/YoqX9QoR2ZAatXVJMrDpt/6diJ7n5WvWKeQzxesJuxzv\ndvwvd51pTjWKy+viiMwWhLo6fdwWdqWjwwKmbWHjhS204A/UX7pHJNqD4bYB\n801dpNXcV/uJzHyBY7gzezbVOr0k+m4F5sUV8Xwj66PbvjbK4ezQdDmznLsl\n5DA9f8v0Hrpl2Bp7W1Da6HVedf+zm5aIwxdpXLl7i8JV8m2F6RJnKPuXpbq7\npT4O1dg2YS+u9EyXpLI2YCdldxLIKOGuY2wTOZSkjl8fGwCBdbiaNUFPW5vJ\nnzzFGsxsZ3R5H5fmSvw9UNT+Bx0+qyrJcdzDmywCbZTcq2PDxtBePsmJjuSZ\nCPJi0lEX9vCghpC+FzFM3N47tl2kDpgzD+zl4AvSVv9VC9QYz9whb3j1J/TP\nVRRm\r\n=0IIH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF5hAujd10gJ0qGB0klYWDICZFXx1XvnExDxdgHp6RcBAiEA1zul19MQh6lBLTIGy182k87iVh33iid5m0y/iOFY1jY="}]},"maintainers":[{"email":"sgr.raee@gmail.com","name":"cham11ng"},{"email":"gurung.suman15@gmail.com","name":"gurungsuman15"},{"email":"kabirbaidhya@gmail.com","name":"kabirbaidhya"},{"email":"superadmin@lftechnology.com","name":"leapfrogsuperadmin"},{"email":"mesaugat@gmail.com","name":"mesaugat"},{"email":"mjsanish@gmail.com","name":"mjsanish"},{"email":"pratishshr@gmail.com","name":"pratishshr"},{"email":"rtrromitamgai@gmail.com","name":"romitamgai"},{"email":"binarysanjeev@gmail.com","name":"sanjeevkpandit"}],"_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.15_1562339646201_0.38391683114928954"},"_hasShrinkwrap":false},"1.0.16":{"name":"just-handlebars-helpers","version":"1.0.16","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"peerDependencies":{"handlebars":">= 3.*"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.4","eslint":"^4.19.1","eslint-config-leapfrog":"^1.0.1","faker":"^4.1.0","gulp":"^4.0.0","gulp-babel":"^7.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","handlebars":"^4.0.11","isparta":"^4.0.0","jasmine-core":"^2.4.1","karma":"^4.1.0","karma-browserify":"^5.2.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"yarn clean && gulp","bump":"./release.sh bump","changelog":"./release.sh changelog"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016 - present Leapfrog Technology Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"just-handlebars-helpers@1.0.16","dist":{"shasum":"a1a0c83d94a1502bfabcc071180e4db3c2ffe947","integrity":"sha512-wyT8kFfN5cT5ROwLQaOQr1ddswmPPxzsetJiJA32sAX0LJom4DAp66hOqQudMtDEQonze9gmpc7/IGODcCI9oA==","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.16.tgz","fileCount":20,"unpackedSize":144826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSlwyCRA9TVsSAnZWagAATAMP/iIraUzwnmyelWmAvyu1\nQC7UVz7qGdpoC/q/nvb663uB5phNKTK+iFS4H0PFPDfa5off5CCNwcUlmUIG\n9goOfcBrpLALhG+0xDIsi63acXFW1arQ1pho/rAYxRIh1VN0vBseyQaY/t+F\npwxG+dynRXOyeQnOhMVoXOP/VVnnwM1xFUD/KpfGSqDf57f82Or4SBWcHJIz\neLnOjBcqt/SS2gKR/1MxSBpcD2bX5D1tRJIUE0goxUCkA5o1LpHRn5bD9uDW\nlivFzfYXyjZWsFJ+jTeFfBCzdQ8/KDZUxLGYCq8shemSsB5VICbztvYyV6Ng\nUfzQczbI/btOezv5hu6JzpdKKQxb82HSzK6WLMzEI8dYYinDpKAK6ZrZDDvE\nQbQ5LfkVqluM/ip4OGW3ivq+qRwhJAH5rMnmsNVSpgSho1yLOZGvwMREwMkl\nhzuLw3vLOkzHtVHrSbbNXqvGYXlpFmzFy51KNp1psTKuncybRcjtgewDOlbC\nMM6WrNngRkq47hheKFRJFgLRrfKLe/tevci62fgo1jG3K27wCqnAPu2FBhFP\nDBImDCBfkRPwpVwyMv5qi2+tIvPfnBlufLDg4ycNEWlAVCEMGM3ZELqIwyRc\n/wDFYZ1VpZeemGdT7rZOwn6TIC3akgJiaSAgwNUuX3c0oRwcrSEm90amOo0R\n2Fou\r\n=bcfU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH2vuPlyMlAFq1A1UMnazJQ2bfuW8U4EMJxG1/KO7TSQAiEA+wOXtbcFEjSvzrb0vR1cM/0kHs5uKt0lpEC+4gty6/A="}]},"maintainers":[{"email":"gurung.suman15@gmail.com","name":"gurungsuman15"},{"email":"kabirbaidhya@gmail.com","name":"kabirbaidhya"},{"email":"superadmin@lftechnology.com","name":"leapfrogsuperadmin"},{"email":"mesaugat@gmail.com","name":"mesaugat"},{"email":"binarysanjeev@gmail.com","name":"sanjeevkpandit"}],"_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.16_1565154353797_0.21376356498371174"},"_hasShrinkwrap":false},"1.0.17":{"name":"just-handlebars-helpers","version":"1.0.17","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"peerDependencies":{"currencyformatter.js":">= 1.0.4 < 2","handlebars":">= 3.*","moment":">= 2.22.0 < 3","sprintf-js":">= 1.1.1 < 2"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.5","eslint":"^4.19.1","eslint-config-leapfrog":"^2.0.1","faker":"^4.1.0","gulp":"^4.0.0","gulp-babel":"^7.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","handlebars":"^4.0.11","isparta":"^4.0.0","jasmine-core":"^2.4.1","karma":"^4.1.0","karma-browserify":"^5.2.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"yarn clean && gulp","bump":"./release.sh bump","changelog":"./release.sh changelog"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016 - present Leapfrog Technology Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"just-handlebars-helpers@1.0.17","dist":{"shasum":"e5c70603354d12262cfa18cc0b2df0177a04a343","integrity":"sha512-Quxu6IP9Q7SvoV9zCb6IZ4hEwvtW97qMp3fm1M2n3Rlz8mKrdMJpM9I5GdDa7DepiwSQeabjqVqpsXbU/BbV8g==","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.17.tgz","fileCount":20,"unpackedSize":146492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJds/POCRA9TVsSAnZWagAAxLsQAIl5pbIwhLhNMAHn+WuV\n56Zggu74xnaFFZ6mstFPiz5Eu7IH7M/AMZbpXr4FhkJPVYXF0wScfckIFZ6k\nINZs3a0ft9cirSAzIpqhsBK+rR3XIDzqZNunADfcntbdZCn7BQ0QzDtav80r\ndV/0YNOMRMN9G9LVtdaIlTOr7ODA+IC3B3b51pWzI6wexKBzKr3FXEd6bD/z\nvZXv5PlMPn7Afa5BCzk8tL+uz3FXYysekIy0aCFCjWi7taRu/nzkdJbZrqRU\nWtOIO6LEuPSOYQTmQwVCI5RmNCkYhQPtwiYq2kDoziaBRW2eXB1DsZm+8GI/\nLAbkmbf1dXvlnJ3dT2TV5OC2tRjH8xMbl3j6Eac3rGX/t0DtnHh0sOiBB9nZ\nezWs83iRrmbHRDXXfQbQiEVagzmmfyTYSJSCjuGEAOAcAfpSRG9EI4mu88uC\nUPt5X/FQB9e0ZuCK5Y8zUWX+lRTMsJgtoDSNTlz3hUt37shFu8BOt/DwX7uk\nk2WIsw3qhcWWds5YvwQy3nUednjy8bayoKZj/ki3m2FJTBRNEZjquToAbrm8\n2TKF/TeyNRPAHX7/FaBl+ly/0NzJcK10NnO964YOGg3ceAaCgwQDGWnrkvee\nETFkskpShkcfXK+lbZbPlkCjDC8/JGe000ASFjklC2i93xvgYs/R1POs31x9\nAyHG\r\n=lUQL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD77nvaOY4KgW0Tbu4W3GX2QgT2iXQVHXK+23zFuXWDoAIgdsNblDD3qbYs8dK65IxKo27rboURyR+dICVLA8bPfrY="}]},"maintainers":[{"email":"gurung.suman15@gmail.com","name":"gurungsuman15"},{"email":"kabirbaidhya@gmail.com","name":"kabirbaidhya"},{"email":"superadmin@lftechnology.com","name":"leapfrogsuperadmin"},{"email":"mesaugat@gmail.com","name":"mesaugat"},{"email":"binarysanjeev@gmail.com","name":"sanjeevkpandit"}],"_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.17_1572074445778_0.6580052996024013"},"_hasShrinkwrap":false},"1.0.18":{"name":"just-handlebars-helpers","version":"1.0.18","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"peerDependencies":{"currencyformatter.js":">= 1.0.4 < 2","handlebars":">= 3.*","moment":">= 2.22.0 < 3","sprintf-js":">= 1.1.1 < 2"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.5","eslint":"^4.19.1","eslint-config-leapfrog":"^2.0.1","faker":"^4.1.0","gulp":"^4.0.0","gulp-babel":"^7.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","handlebars":"^4.0.11","isparta":"^4.0.0","jasmine-core":"^2.4.1","karma":"^4.1.0","karma-browserify":"^5.2.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"yarn clean && gulp","bump":"./release.sh bump","changelog":"./release.sh changelog"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016 - present Leapfrog Technology Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"just-handlebars-helpers@1.0.18","dist":{"shasum":"02c3f638477b2ce74a50d1f124fe074b56a20cdd","integrity":"sha512-7L8ERT6TFeyNBCa7T9IzOdyHwYHSJJrRWuTAQi2fNFRzVjqIoqq80aFVvm/1BAtfIRR6Fqp1isI1RwZug0hTBA==","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.18.tgz","fileCount":20,"unpackedSize":1791633,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfH6yTCRA9TVsSAnZWagAAhpcP/jYa+4vozVe1VA8167Zm\n0N1ljrfVY6nE98t6badxiUB045ThPnOiBnr4xWErI8bWwXKb/+ZUyTO5oSuR\nOhA1KvdKieU93Lv606X9RPYWOgyKxTI6ZqOGJHOs0P9m/tXLN4e9zHLsgXpK\nArVe16Co6V2IvO1xxsswNCVPIhS5Ktq096143TPDLnAVdcTaNcezS9zhyPyp\nyTg/dx5fqTFZYlAyQjMfKnGLFyB2ogcsfmisPsoLYY90IAZNC0Dl8mj4JZDz\nH+pwQbiRMjknwLTJ4YcKfLYcJqi90MYZ+icCWZxhs5JU4BjjV6tQMs7dvUxG\nUvKDkQvCus1moFzoQcyA/p2WPA24qq3znJIfDc7Wwjp/iyV/VtZMac6gOKaE\nhiCIxb/RlzGiIok8FA56AklvgqpXTXy7moOVLEKnOl6ejZ2gb6v+LvJ3kuI2\nch/rBFaOZGDSEQeBENJp4e8Wbq//7HUFBqb1j7ab7ZSUp735gQ9vqnwB9HOH\ndD6WvLBZbIrKZZKSv6lT2h8+aroeZCMeRRZuOXcGIJhZ+m2rALMN2STygk10\nVP9ROH+RZYAu3jxmbX7nnOit6ECxY62Gkj54Ba0BDsD3gxUbdE/dwHpvMcSA\nTOVNUi3uZWUm1UOk+FIrz1Sic8jU2BBYhp4mIypj/5gdr7y1AT4sNYE5bmGj\nHAyi\r\n=gJHH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGnfIE/PHBIv5Xkecva0DfKpWzQ7NjDuZxSlMBGcIowAIhAMW6F8z+AGqbi9tu8T9UwltGJrf5KKe/Bbs5NGe4ulU0"}]},"maintainers":[{"email":"gurung.suman15@gmail.com","name":"gurungsuman15"},{"email":"kabirbaidhya@gmail.com","name":"kabirbaidhya"},{"email":"superadmin@lftechnology.com","name":"leapfrogsuperadmin"},{"email":"mesaugat@gmail.com","name":"mesaugat"},{"email":"binarysanjeev@gmail.com","name":"sanjeevkpandit"}],"_npmUser":{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.18_1595911315019_0.39930267297805644"},"_hasShrinkwrap":false},"1.0.19":{"name":"just-handlebars-helpers","version":"1.0.19","description":"A lightweight package with common helpers for Handlebars","main":"index.js","license":"MIT","repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"scripts":{"test":"karma start --single-run","lint":"eslint --fix src tests gulpfile.js karma.conf.js index.js","codecov":"cat coverage/*/lcov.info | codecov","start":"karma start","clean":"rimraf dist/ lib/","build":"yarn clean && gulp","bump":"./release.sh bump","changelog":"./release.sh changelog"},"keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babelify":"^8.0.0","browserify":"^16.2.2","browserify-istanbul":"^2.0.0","browserify-shimify":"0.1.0-0","codecov":"^3.0.2","currencyformatter.js":"^1.0.5","eslint":"^8.7.0","eslint-config-leapfrog":"^2.0.1","faker":"^4.1.0","gulp":"^4.0.2","gulp-babel":"^7.0.1","gulp-eslint":"^6.0.0","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.2","handlebars":"^4.0.11","isparta":"^4.1.1","jasmine-core":"^2.4.1","karma":"^4.4.1","karma-browserify":"^5.3.0","karma-chrome-launcher":"^2.2.0","karma-coverage":"^1.1.2","karma-jasmine":"^1.1.2","karma-spec-reporter":"0.0.32","moment":"^2.22.1","puppeteer":"^1.4.0","rimraf":"^2.6.2","sprintf-js":"^1.1.1","vinyl-source-stream":"^2.0.0","watchify":"^3.11.0"},"peerDependencies":{"currencyformatter.js":">= 1.0.4 < 2","handlebars":">= 3.*","moment":">= 2.22.0 < 3","sprintf-js":">= 1.1.1 < 2"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2016 - present Leapfrog Technology Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"just-handlebars-helpers@1.0.19","dist":{"shasum":"9071147f5405e2ab2ca2a05c29c24d13fa263367","integrity":"sha512-E+0eUn5xKfBAoU6mF3QbGZ939PZDw7RYI6AMTpRQtesRH2lZXjXaOqHzJ2nbHnDVmxNQM453sXFnMpd/uaLkKg==","tarball":"https://registry.npmjs.org/just-handlebars-helpers/-/just-handlebars-helpers-1.0.19.tgz","fileCount":20,"unpackedSize":1018957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh880ICRA9TVsSAnZWagAAKj4P/1Z3HCzS7RX+6LslJ1Um\n00HQlMUYMNtud7dDaNkMKNDaJDocAQs3N4iDrEOBhgCOBFX9SCfbeHe3WKMJ\nBrsTwSIyFMh5zgvmVEVXM8pu+uL8xW962Y9bz4NhxSD5/QF1Eak/4D91HpPC\n7Q/o5P+voPCqAFqF8TTZzgs0XTGxBgbWxlc2dNtftsCYu3AqB9WK6oUQR7uj\n2WcGRqz5sw0q2bZNyvvO5mTlc5gS54wEB/0xezcue+b46E1F/RiRlei/oVCJ\nK8WNP0l9kjFa+pGtXOSd4SSCVX726m6ZtdH0icmkX3tXvg18ImECTjfO47H0\nYmg4QANhA+x+CLRE/9/kqp/r8b19F0qTssYYV0lftCoHVp4LUx62FLHBBenE\naoIDy0JhxlqffOCBzi9l3hv7pNs8UQChRFRUwYTf4iqkgCyUyu/DfE/gWdum\nQvPhlDwVPjS576DSsnqyW/F21xFZ9A/2zjtLu1W+v0cYfhOoJWWeHQuPJAjy\npShiym2HVwS53R1lHR8ogxulb77Nhxn/5LOFVmOP9rc2pSjvcwK+SESrXShk\nwVPDUePMYEKe90+tngddF7O8bOPrhRsKY6mVfpGLR4xtSO0UQK8guqXDq/lI\nnStZk5G8RFElmwSXWn/Yyc47JHHyKEhQ857Ff2cdbrX9lksBXXa2DE+sr8uq\nX3Zh\r\n=0ctG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdIzEm5aoR8JRdP7YEUIlxQIywpmx4KI/6PkYZyGAcOAIgbngf2wskcWallL4bysY+d4QwqDH7sU162DsxyrrnMIw="}]},"_npmUser":{"name":"mesaugat","email":"mesaugat@gmail.com"},"directories":{},"maintainers":[{"name":"leapfrogsuperadmin","email":"superadmin@lftechnology.com"},{"name":"mesaugat","email":"mesaugat@gmail.com"},{"name":"kabirbaidhya","email":"kabirbaidhya@gmail.com"},{"name":"sanjeevkpandit","email":"binarysanjeev@gmail.com"},{"name":"gurungsuman15","email":"gurung.suman15@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/just-handlebars-helpers_1.0.19_1643367688599_0.7074280753115045"},"_hasShrinkwrap":false}},"repository":{"type":"git","url":"git@github.com/leapfrogtechnology/just-handlebars-helpers.git"},"author":{"name":"Kabir Baidhya","email":"kabirbaidhya@gmail.com"},"license":"MIT","readmeFilename":"README.md","keywords":["handlebars","helpers","lightweight","just-handlebars","just-handlebars-helpers","handlebars-helpers","mustache","template","templating","html"],"contributors":[{"name":"Saugat Acharya","email":"mesaugat@gmail.com"},{"name":"Sanjeev Kumar Pandit","email":"binarysanjeev@gmail.com"},{"name":"Suman Gurung","email":"gurung.suman15@gmail.com"},{"name":"Deepak Pandey","email":"pandey.dip@gmail.com"}],"users":{"simoyw":true,"burakkp":true}}