{"maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"dist-tags":{"latest":"1.21.0"},"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","readme":"[![view on npm](http://img.shields.io/npm/v/xlsx-populate.svg)](https://www.npmjs.org/package/xlsx-populate)\n[![npm module downloads per month](http://img.shields.io/npm/dm/xlsx-populate.svg)](https://www.npmjs.org/package/xlsx-populate)\n[![Build Status](https://travis-ci.org/dtjohnson/xlsx-populate.svg?branch=master)](https://travis-ci.org/dtjohnson/xlsx-populate)\n[![Dependency Status](https://david-dm.org/dtjohnson/xlsx-populate.svg)](https://david-dm.org/dtjohnson/xlsx-populate)\n\n# xlsx-populate\nExcel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, encryption, and a focus on keeping existing workbook features and styles in tact.\n\n## Table of Contents\n- [Installation](#installation)\n  * [Node.js](#nodejs)\n  * [Browser](#browser)\n- [Usage](#usage)\n  * [Populating Data](#populating-data)\n  * [Parsing Data](#parsing-data)\n  * [Ranges](#ranges)\n  * [Rows and Columns](#rows-and-columns)\n  * [Managing Sheets](#managing-sheets)\n  * [Defined Names](#defined-names)\n  * [Find and Replace](#find-and-replace)\n  * [Styles](#styles)\n  * [Rich Texts](#rich-texts)\n    + [Supported styles](#supported-styles)\n    + [Usage](#usage-1)\n    + [Notes](#notes)\n  * [Dates](#dates)\n  * [Data Validation](#data-validation)\n  * [Method Chaining](#method-chaining)\n  * [Hyperlinks](#hyperlinks)\n  * [Print Options](#print-options)\n  * [Page Margins](#page-margins)\n  * [SheetView Panes](#sheetview-panes)\n  * [Serving from Express](#serving-from-express)\n  * [Browser Usage](#browser-usage)\n  * [Promises](#promises)\n  * [Encryption](#encryption)\n- [Missing Features](#missing-features)\n- [Submitting an Issue](#submitting-an-issue)\n- [Contributing](#contributing)\n  * [How xlsx-populate Works](#how-xlsx-populate-works)\n  * [Setting up your Environment](#setting-up-your-environment)\n  * [Pull Request Checklist](#pull-request-checklist)\n  * [Gulp Tasks](#gulp-tasks)\n- [Style Reference](#style-reference)\n- [API Reference](#api-reference)\n\n## Installation\n\n### Node.js\n```bash\nnpm install xlsx-populate\n```\nNote that xlsx-populate uses ES6 features so only Node.js v4+ is supported.\n\n### Browser\n\nA functional browser example can be found in [examples/browser/index.html](https://gitcdn.xyz/repo/dtjohnson/xlsx-populate/master/examples/browser/index.html).\n\nxlsx-populate is written first for Node.js. We use [browserify](http://browserify.org/) and [babelify](https://github.com/babel/babelify) to transpile and pack up the module for use in the browser.\n\nYou have a number of options to include the code in the browser. You can download the combined, minified code from the browser directory in this repository or you can install with bower:\n```bash\nbower install xlsx-populate\n```\nAfter including the module in the browser, it is available globally as `XlsxPopulate`.\n\nAlternatively, you can require this module using [browserify](http://browserify.org/). Since xlsx-populate uses ES6 features, you will also need to use [babelify](https://github.com/babel/babelify) with [babel-preset-env](https://www.npmjs.com/package/babel-preset-env).\n\n## Usage\n\nxlsx-populate has an [extensive API](#api-reference) for working with Excel workbooks. This section reviews the most common functions and use cases. Examples can also be found in the examples directory of the source code.\n\n### Populating Data\n\nTo populate data in a workbook, you first load one (either blank, from data, or from file). Then you can access sheets and\n cells within the workbook to manipulate them.\n```js\nconst XlsxPopulate = require('xlsx-populate');\n\n// Load a new blank workbook\nXlsxPopulate.fromBlankAsync()\n    .then(workbook => {\n        // Modify the workbook.\n        workbook.sheet(\"Sheet1\").cell(\"A1\").value(\"This is neat!\");\n\n        // Write to file.\n        return workbook.toFileAsync(\"./out.xlsx\");\n    });\n```\n\n### Parsing Data\n\nYou can pull data out of existing workbooks using [Cell.value](#Cell+value) as a getter without any arguments:\n```js\nconst XlsxPopulate = require('xlsx-populate');\n\n// Load an existing workbook\nXlsxPopulate.fromFileAsync(\"./Book1.xlsx\")\n    .then(workbook => {\n        // Modify the workbook.\n        const value = workbook.sheet(\"Sheet1\").cell(\"A1\").value();\n\n        // Log the value.\n        console.log(value);\n    });\n```\n__Note__: in cells that contain values calculated by formulas, Excel will store the calculated value in the workbook. The [value](#Cell+value) method will return the value of the cells at the time the workbook was saved. xlsx-populate will _not_ recalculate the values as you manipulate the workbook and will _not_ write the values to the output.\n\n### Ranges\nxlsx-populate also supports ranges of cells to allow parsing/manipulation of multiple cells at once.\n```js\nconst r = workbook.sheet(0).range(\"A1:C3\");\n\n// Set all cell values to the same value:\nr.value(5);\n\n// Set the values using a 2D array:\nr.value([\n    [1, 2, 3],\n    [4, 5, 6],\n    [7, 8, 9]\n]);\n\n// Set the values using a callback function:\nr.value((cell, ri, ci, range) => Math.random());\n```\n\nA common use case is to simply pull all of the values out all at once. You can easily do that with the [Sheet.usedRange](#Sheet+usedRange) method.\n```js\n// Get 2D array of all values in the worksheet.\nconst values = workbook.sheet(\"Sheet1\").usedRange().value();\n```\n\nAlternatively, you can set the values in a range with only the top-left cell in the range:\n```js\nworkbook.sheet(0).cell(\"A1\").value([\n    [1, 2, 3],\n    [4, 5, 6],\n    [7, 8, 9]\n]);\n```\nThe set range is returned.\n\n### Rows and Columns\n\nYou can access rows and columns in order to change size, hide/show, or access cells within:\n```js\n// Get the B column, set its width and unhide it (assuming it was hidden).\nsheet.column(\"B\").width(25).hidden(false);\n\nconst cell = sheet.row(5).cell(3); // Returns the cell at C5.\n```\n\n### Managing Sheets\nxlsx-populate supports a number of options for managing sheets.\n\nYou can get a sheet by name or index or get all of the sheets as an array:\n```js\n// Get sheet by index\nconst sheet1 = workbook.sheet(0);\n\n// Get sheet by name\nconst sheet2 = workbook.sheet(\"Sheet2\");\n\n// Get all sheets as an array\nconst sheets = workbook.sheets();\n```\n\nYou can add new sheets:\n```js\n// Add a new sheet named 'New 1' at the end of the workbook\nconst newSheet1 = workbook.addSheet('New 1');\n\n// Add a new sheet named 'New 2' at index 1 (0-based)\nconst newSheet2 = workbook.addSheet('New 2', 1);\n\n// Add a new sheet named 'New 3' before the sheet named 'Sheet1'\nconst newSheet3 = workbook.addSheet('New 3', 'Sheet1');\n\n// Add a new sheet named 'New 4' before the sheet named 'Sheet1' using a Sheet reference.\nconst sheet = workbook.sheet('Sheet1');\nconst newSheet4 = workbook.addSheet('New 4', sheet);\n```\n*Note: the sheet rename method does not rename references to the sheet so formulas, etc. can be broken. Use with caution!*\n\nYou can rename sheets:\n```js\n// Rename the first sheet.\nconst sheet = workbook.sheet(0).name(\"new sheet name\");\n```\n\nYou can move sheets:\n```js\n// Move 'Sheet1' to the end\nworkbook.moveSheet(\"Sheet1\");\n\n// Move 'Sheet1' to index 2\nworkbook.moveSheet(\"Sheet1\", 2);\n\n// Move 'Sheet1' before 'Sheet2'\nworkbook.moveSheet(\"Sheet1\", \"Sheet2\");\n```\nThe above methods can all use sheet references instead of names as well. And you can also move a sheet using a method on the sheet:\n```js\n// Move the sheet before 'Sheet2'\nsheet.move(\"Sheet2\");\n```\n\nYou can delete sheets:\n```js\n// Delete 'Sheet1'\nworkbook.deleteSheet(\"Sheet1\");\n\n// Delete sheet with index 2\nworkbook.deleteSheet(2);\n\n// Delete from sheet reference\nworkbook.sheet(0).delete();\n```\n\nYou can get/set the active sheet:\n```js\n// Get the active sheet\nconst sheet = workbook.activeSheet();\n\n// Check if the current sheet is active\nsheet.active() // returns true or false\n\n// Activate the sheet\nsheet.active(true);\n\n// Or from the workbook\nworkbook.activeSheet(\"Sheet2\");\n```\n\n### Defined Names\nExcel supports creating defined names that refer to addresses, formulas, or constants. These defined names can be scoped\nto the entire workbook or just individual sheets. xlsx-populate supports looking up defined names that refer to cells or\nranges. (Dereferencing other names will result in an error.) Defined names are particularly useful if you are populating\ndata into a known template. Then you do not need to know the exact location.\n\n```js\n// Look up workbook-scoped name and set the value to 5.\nworkbook.definedName(\"some name\").value(5);\n\n// Look of a name scoped to the first sheet and set the value to \"foo\".\nworkbook.sheet(0).definedName(\"some other name\").value(\"foo\");\n```\n\nYou can also create, modify, or delete defined names:\n```js\n// Create/modify a workbook-scope defined name\nworkbook.definedName(\"some name\", \"TRUE\");\n\n// Delete a sheet-scoped defined name:\nworkbook.sheet(0).definedName(\"some name\", null);\n```\n\n### Find and Replace\nYou can search for occurrences of text in cells within the workbook or sheets and optionally replace them.\n```js\n// Find all occurrences of the text \"foo\" in the workbook and replace with \"bar\".\nworkbook.find(\"foo\", \"bar\"); // Returns array of matched cells\n\n// Find the matches but don't replace.\nworkbook.find(\"foo\");\n\n// Just look in the first sheet.\nworkbook.sheet(0).find(\"foo\");\n\n// Check if a particular cell matches the value.\nworkbook.sheet(\"Sheet1\").cell(\"A1\").find(\"foo\"); // Returns true or false\n```\n\nLike [String.replace](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace), the find method can also take a RegExp search pattern and replace can take a function callback:\n```js\n// Use a RegExp to replace all lowercase letters with uppercase\nworkbook.find(/[a-z]+/g, match => match.toUpperCase());\n```\n\n### Styles\nxlsx-populate supports a wide range of cell formatting. See the [Style Reference](#style-reference) for the various options.\n\nTo get/set a cell style:\n```js\n// Get a single style\nconst bold = cell.style(\"bold\"); // true\n\n// Get multiple styles\nconst styles = cell.style([\"bold\", \"italic\"]); // { bold: true, italic: true }\n\n// Set a single style\ncell.style(\"bold\", true);\n\n// Set multiple styles\ncell.style({ bold: true, italic: true });\n```\n\nSimilarly for ranges:\n```js\n// Set all cells in range with a single style\nrange.style(\"bold\", true);\n\n// Set with a 2D array\nrange.style(\"bold\", [[true, false], [false, true]]);\n\n// Set with a callback function\nrange.style(\"bold\", (cell, ri, ci, range) => Math.random() > 0.5);\n\n// Set multiple styles using any combination\nrange.style({\n    bold: true,\n    italic: [[true, false], [false, true]],\n    underline: (cell, ri, ci, range) => Math.random() > 0.5\n});\n```\n\nIf you are setting styles for many cells, performance is far better if you set for an entire row or column:\n```js\n// Set a single style\nsheet.row(1).style(\"bold\", true);\n\n// Set multiple styles\nsheet.column(\"A\").style({ bold: true, italic: true });\n\n// Get a single style\nconst bold = sheet.column(3).style(\"bold\");\n\n// Get multiple styles\nconst styles = sheet.row(5).style([\"bold\", \"italic\"]);\n```\nNote that the row/column style behavior mirrors Excel. Setting a style on a column will apply that style to all existing cells and any new cells that are populated. Getting the row/column style will return only the styles that have been applied to the entire row/column, not the styles of every cell in the row or column.\n\nSome styles take values that are more complex objects:\n```js\ncell.style(\"fill\", {\n    type: \"pattern\",\n    pattern: \"darkDown\",\n    foreground: {\n        rgb: \"ff0000\"\n    },\n    background: {\n        theme: 3,\n        tint: 0.4\n    }\n});\n```\n\nThere are often shortcuts for the setters, but the getters will always return the full objects:\n```js\ncell.style(\"fill\", \"0000ff\");\n\nconst fill = cell.style(\"fill\");\n/*\nfill is now set to:\n{\n    type: \"solid\",\n    color: {\n        rgb: \"0000ff\"\n    }\n}\n*/\n```\n\nNumber formats are one of the most common styles. They can be set using the `numberFormat` style.\n```js\ncell.style(\"numberFormat\", \"0.00\");\n```\n\nInformation on how number format codes work can be found [here](https://support.office.com/en-us/article/Number-format-codes-5026bbd6-04bc-48cd-bf33-80f18b4eae68?ui=en-US&rs=en-US&ad=US).\nYou can also look up the desired format code in Excel:\n* Right-click on a cell in Excel with the number format you want.\n* Click on \"Format Cells...\"\n* Switch the category to \"Custom\" if it is not already.\n* The code in the \"Type\" box is the format you should copy.\n\n### Rich Texts\nYou can read/write rich texts to cells.\n\n#### Supported styles\n`bold`, `italic`, `underline`, `strikethrough`, `subscript`, `fontSize`,\n`fontFamily`, `fontGenericFamily`, `fontScheme`, `fontColor`.\nSee the [Style Reference](#style-reference) for the various options.\n\n#### Usage\nYou can read and modify rich texts on an existing rich text cell:\n```js\n// assume A1 is a rich text cell\nconst RichText = require('xlsx-Populate').RichText;\nconst cell = workbook.sheet(0).cell('A1');\ncell.value() instanceof RichText // returns true\nconst richtext = cell.value();\n// get the concatenate text\nrichtext.text();\n\n// loop through each rich text fragment\nfor (let i = 0; i < richtext.length; i++) {\n    const fragment = richtext.get(i);\n    // Get the style\n    fragment.style('bold');\n    // Get many styles\n    fragment.style(['bold', 'italic']);\n    // Set one style\n    fragment.style('bold', true);\n    // Set many styles\n    fragment.style({ 'bold': true, 'italic': true });\n    // Get the value\n    fragment.value();\n    // Set the value\n    fragment.value('hello');\n}\n\n// remove the first rich text fragment\nrichtext.remove(0);\n\n// clear this rich texts\nrichtext.clear();\n```\n\nHow to set a cell to rich texts:\n```js\nconst RichText = require('xlsx-Populate').RichText;\nconst cell = workbook.sheet(0).cell('A1');\n// set a cell value to rich text\ncell.value(new RichText());\n\n// add two rich text fragments\ncell.value()\n    .add('hello ', { italic: true, bold: true })\n    .add('world!', { fontColor: 'FF0000' });\n````\n\nYou can specify the index when adding rich text fragment.\n```js\n// add before the first fragment\ncell.value().add('text', { bold: true }, 0);\n// add before the second fragment\ncell.value().add('text', { bold: true }, 1);\n// add after the last fragment\ncell.value().add('text', { bold: true });\n```\n#### Notes\nWe make a deep copy of the richtext instance when assign it to a cell, which\nmeans you can only modify the content of the richtext before calling `cell.value(richtext)`. \nAny modification to the richtext instance after calling `cell.value(richtext)` will not\nsave to the cell. i.e.\n```js\nconst richtext = new RichText();\nrichtext.add('hello');\ncell.value(richtext);\ncell.value().text(); // returns 'hello'\n\nrichtext.add(' world')\nrichtext.text(); // returns 'hello world' \ncell.value().text(); // returns 'hello'\ncell.value() === richtext; // returns false\n\ncell.value().add(' world');\ncell.value().text(); // returns 'hello world'\n```\n\nThis means you can create a rich text instance and assign it to any cells! Each cell does\nnot share the same instance but creates a deep copy of the instance.\n```js\nconst sheet = workbook.sheet(0);\nconst richtext = new RichText();\nrichtext.add('hello');\nconst range = sheet.range(\"A1:C3\");\nrange.value(richtext);\n// they do not share the same instance\nsheet.cell('A1').value() === sheet.cell('C1').value() // returns false\n```\n\nYou can get the rich text from a cell and set it to anoher cell.\n```js\nconst richtext = cell1.value();\ncell2.value(richtext);\ncell1.value() === cell2.value() // returns false\n```\n\nWhenever you call `richtext.add(text, styles, index)`, we will detect if the given `text`\ncontains line separators (`\\n`, `\\r`, `\\r\\n`), if it does, we will call\n`cell.style('wrapText', true)` for you. MS Excel needs wrapText to be true\nto have the new lines displayed, otherwise you will see the texts in one line.\nYou may also need to set row height to have all lines displayed.\n```js\ncell.value()\n    // it support all line separators\n    .add('123\\n456\\r789\\r\\n10', { italic: true, fontColor: '123456' })\n// remember to set height to show the whole row\nworkbook.sheet(0).row(1).height(100);\n```\n\n### Dates\n\nExcel stores date/times as the number of days since 1/1/1900 ([sort of](https://en.wikipedia.org/wiki/Leap_year_bug)). It just applies a number formatting to make the number appear as a date. So to set a date value, you will need to also set a number format for a date if one doesn't already exist in the cell:\n```js\ncell.value(new Date(2017, 1, 22)).style(\"numberFormat\", \"dddd, mmmm dd, yyyy\");\n```\nWhen fetching the value of the cell, it will be returned as a number. To convert it to a date use [XlsxPopulate.numberToDate](#XlsxPopulate.numberToDate):\n```js\nconst num = cell.value(); // 42788\nconst date = XlsxPopulate.numberToDate(num); // Wed Feb 22 2017 00:00:00 GMT-0500 (Eastern Standard Time)\n```\n\n### Data Validation\nData validation is also supported. To set/get/remove a cell data validation:\n```js\n// Set the data validation\ncell.dataValidation({\n    type: 'list',\n    allowBlank: false,\n    showInputMessage: false,\n    prompt: false,\n    promptTitle: 'String',\n    showErrorMessage: false,\n    error: 'String',\n    errorTitle: 'String',\n    operator: 'String',\n    formula1: '$A:$A',//Required\n    formula2: 'String'\n});\n\n//Here is a short version of the one above.\ncell.dataValidation('$A:$A');\n\n// Get the data validation\nconst obj = cell.dataValidation(); // Returns an object\n\n// Remove the data validation\ncell.dataValidation(null); //Returns the cell\n```\n\nSimilarly for ranges:\n```js\n\n// Set all cells in range with a single shared data validation\nrange.dataValidation({\n    type: 'list',\n    allowBlank: false,\n    showInputMessage: false,\n    prompt: false,\n    promptTitle: 'String',\n    showErrorMessage: false,\n    error: 'String',\n    errorTitle: 'String',\n    operator: 'String',\n    formula1: 'Item1,Item2,Item3,Item4',//Required\n    formula2: 'String'\n});\n\n//Here is a short version of the one above.\nrange.dataValidation('Item1,Item2,Item3,Item4');\n\n// Get the data validation\nconst obj = range.dataValidation(); // Returns an object\n\n// Remove the data validation\nrange.dataValidation(null); //Returns the Range\n```\nPlease note, the data validation gets applied to the entire range, *not* each Cell in the range.\n\n### Method Chaining\n\nxlsx-populate uses method-chaining similar to that found in [jQuery](https://jquery.com/) and [d3](https://d3js.org/). This lets you construct large chains of setters as desired:\n```js\nworkbook\n    .sheet(0)\n        .cell(\"A1\")\n            .value(\"foo\")\n            .style(\"bold\", true)\n        .relativeCell(1, 0)\n            .formula(\"A1\")\n            .style(\"italic\", true)\n.workbook()\n    .sheet(1)\n        .range(\"A1:B3\")\n            .value(5)\n        .cell(0, 0)\n            .style(\"underline\", \"double\");\n\n```\n\n### Hyperlinks\nHyperlinks are also supported on cells using the [Cell.hyperlink](#Cell+hyperlink) method. The method will _not_ style the content to look like a hyperlink. You must do that yourself:\n```js\n// Set a hyperlink\ncell.value(\"Link Text\")\n    .style({ fontColor: \"0563c1\", underline: true })\n    .hyperlink(\"http://example.com\");\n\n// Set a hyperlink with tooltip\ncell.value(\"Link Text\")\n    .style({ fontColor: \"0563c1\", underline: true })\n    .hyperlink({ hyperlink: \"http://example.com\", tooltip: \"example.com\" });\n\n// Get the hyperlink\nconst value = cell.hyperlink(); // Returns 'http://example.com'\n\n// Set a hyperlink to email\ncell.value(\"Click to Email Jeff Bezos\")\n    .hyperlink({ email: \"jeff@amazon.com\", emailSubject: \"I know you're a busy man Jeff, but...\" });\n\n// Set a hyperlink to an internal cell using an address string.\ncell.value(\"Click to go to an internal cell\")\n    .hyperlink(\"Sheet2!A1\");\n\n// Set a hyperlink to an internal cell using a cell object.\ncell.value(\"Click to go to an internal cell\")\n    .hyperlink(workbook.sheet(0).cell(\"A1\"));\n```\n\n### Print Options\nPrint options are accessed using the [Sheet.printOptions](#Sheet+printOptions) method. Defaults are all assumed to be false, so if the attribute is missing, then the method returns false. A method [Sheet.printGridLines](#Sheet+printGridLines) is provided to offer the convenience of setting both gridLines and gridLinesSet.\n```js\n// Print row and column headings\nsheet.printOptions('headings', true);\n\n// Get the headings flag\nconst headings = sheet.printOptions('headings'); // Returns true\n\n// Clear flag for center on page vertically when printing\nsheet.printOptions('verticalCentered', undefined);\n\n// Get the verticalCentered flag\nconst verticalCentered = sheet.printOptions('verticalCentered'); // Returns false\n\n// Enable grid lines in print\nsheet.printGridLines(true);\n\n// Now both gridLines and gridLinesSet print options are set\nsheet.printOptions('gridLines') === sheet.printOptions('gridLinesSet') === true; // Returns true\n\n// To disable, just disable one of gridLines or gridLinesSet\nsheet.printOptions('gridLineSets', false);\n\nconst isPrintGridLinesEnabled = sheet.printGridLines(); // Returns false\n```\n\n### Page Margins\nExcel requires that all page margins are defined or none at all. To ensure this, please choose an existing or custom preset. See [Sheet.pageMarginsPreset](#Sheet+pageMarginsPreset).\n\n```js\n// Get the current preset\nsheet.pageMarginsPreset(); // Returns undefined\n\n// Switch to an existing preset\nsheet.pageMarginsPreset('normal');\n```\n\nPage margins are accessed using the [Sheet.pageMargins](#Sheet+pageMargins) method. If a page margin is not set, the preset will fill in the gaps.\n\n```js\n// Get top margin in inches, note that the current preset is currently set to normal (see above)\nsheet.pageMargins('top'); // Returns 0.75\n\n// Set top page margin in inches\nsheet.pageMargins('top', 1.1);\n\n// Get top page margin in inches.\nconst topPageMarginInInches = sheet.pageMargins('top'); // Returns 1.1\n```\n\n### SheetView Panes\nSheetView Panes are accessed using the [Sheet.panes](#Sheet+panes) method.\nFor convenience, we have [Sheet.freezePanes](#Sheet+freezePanes),\n[Sheet.splitPanes](#Sheet+splitPanes), [Sheet.resetPanes](#Sheet+resetPanes),\nand type [PaneOptions](#paneoptions--object).\n```js\n// access Pane options\nsheet.panes(); // return PaneOptions Object\n\n// manually Set Pane options, WARNING: setting wrong options may result in excel fails to open.\nconst paneOptions = { state: 'frozen', topLeftCell: 'B2', xSplit: 1, ySplit: 1, activePane: 'bottomRight' }\nsheet.panes(paneOptions); // return PaneOptions Object\n\n// freeze panes (freeze first column and first two rows)\nsheet.freezePanes(1, 2);\n// OR\nsheet.freezePanes('B3');\n\n// split panes (Horizontal Split Position: 1000 / 20 pt, Vertical Split Position: 2000 / 20 pt)\nsheet.splitPanes(1000, 2000);\n\n// reset to normal panes (no freeze panes and split panes)\nsheet.resetPanes();\n```\n\n### Serving from Express\nYou can serve the workbook from [express](http://expressjs.com/) or other web servers with something like this:\n```js\nrouter.get(\"/download\", function (req, res, next) {\n    // Open the workbook.\n    XlsxPopulate.fromFileAsync(\"input.xlsx\")\n        .then(workbook => {\n            // Make edits.\n            workbook.sheet(0).cell(\"A1\").value(\"foo\");\n\n            // Get the output\n            return workbook.outputAsync();\n        })\n        .then(data => {\n            // Set the output file name.\n            res.attachment(\"output.xlsx\");\n\n            // Send the workbook.\n            res.send(data);\n        })\n        .catch(next);\n});\n```\n\n### Browser Usage\nUsage in the browser is almost the same. A functional example can be found in [examples/browser/index.html](https://gitcdn.xyz/repo/dtjohnson/xlsx-populate/master/examples/browser/index.html). The library is exposed globally as `XlsxPopulate`. Existing workbooks can be loaded from a file:\n```js\n// Assuming there is a file input in the page with the id 'file-input'\nvar file = document.getElementById(\"file-input\").files[0];\n\n// A File object is a special kind of blob.\nXlsxPopulate.fromDataAsync(file)\n    .then(function (workbook) {\n        // ...\n    });\n```\n\nYou can also load from AJAX if you set the responseType to 'arraybuffer':\n```js\nvar req = new XMLHttpRequest();\nreq.open(\"GET\", \"http://...\", true);\nreq.responseType = \"arraybuffer\";\nreq.onreadystatechange = function () {\n    if (req.readyState === 4 && req.status === 200){\n        XlsxPopulate.fromDataAsync(req.response)\n            .then(function (workbook) {\n                // ...\n            });\n    }\n};\n\nreq.send();\n```\n\nTo download the workbook, you can either export as a blob (default behavior) or as a base64 string. You can then insert a link into the DOM and click it:\n```js\nworkbook.outputAsync()\n    .then(function (blob) {\n        if (window.navigator && window.navigator.msSaveOrOpenBlob) {\n            // If IE, you must uses a different method.\n            window.navigator.msSaveOrOpenBlob(blob, \"out.xlsx\");\n        } else {\n            var url = window.URL.createObjectURL(blob);\n            var a = document.createElement(\"a\");\n            document.body.appendChild(a);\n            a.href = url;\n            a.download = \"out.xlsx\";\n            a.click();\n            window.URL.revokeObjectURL(url);\n            document.body.removeChild(a);\n        }\n    });\n```\n\nAlternatively, you can download via a data URI, but this is not supported by IE:\n```js\nworkbook.outputAsync(\"base64\")\n    .then(function (base64) {\n        location.href = \"data:\" + XlsxPopulate.MIME_TYPE + \";base64,\" + base64;\n    });\n```\n\n### Promises\nxlsx-populate uses [promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) to manage async input/output. By default it uses the `Promise` defined in the browser or Node.js. In browsers that don't support promises (IE) a [polyfill is used via JSZip](https://stuk.github.io/jszip/documentation/api_jszip/external.html).\n```js\n// Get the current promise library in use.\n// Helpful for getting a usable Promise library in IE.\nvar Promise = XlsxPopulate.Promise;\n```\n\nIf you prefer, you can override the default `Promise` library used with another ES6 compliant library like [bluebird](http://bluebirdjs.com/).\n```js\nconst Promise = require(\"bluebird\");\nconst XlsxPopulate = require(\"xlsx-populate\");\nXlsxPopulate.Promise = Promise;\n```\n\n### Encryption\nXLSX Agile encryption and descryption are supported so you can read and write password-protected workbooks. To read a protected workbook, pass the password in as an option:\n```js\nXlsxPopulate.fromFileAsync(\"./Book1.xlsx\", { password: \"S3cret!\" })\n    .then(workbook => {\n        // ...\n    });\n```\n\nSimilarly, to write a password encrypted workbook:\n```js\nworkbook.toFileAsync(\"./out.xlsx\", { password: \"S3cret!\" });\n```\nThe password option is supported in all output methods. N.B. Workbooks will only be encrypted if you supply a password when outputting even if they had a password when reading.\n\nEncryption support is also available in the browser, but take care! Any password you put in browser code can be read by anyone with access to your code. You should only use passwords that are supplied by the end-user. Also, the performance of encryption/decryption in the browser is far worse than with Node.js. IE, in particular, is extremely slow. xlsx-populate is bundled for browsers with and without encryption support as the encryption libraries increase the size of the bundle a lot.\n\n## Missing Features\nThere are many, many features of the XLSX format that are not yet supported. If your use case needs something that isn't supported\nplease open an issue to show your support. Better still, feel free to [contribute](#contributing) a pull request!\n\n## Submitting an Issue\nIf you happen to run into a bug or an issue, please feel free to [submit an issue](https://github.com/dtjohnson/xlsx-populate/issues). I only ask that you please include sample JavaScript code that demonstrates the issue.\nIf the problem lies with modifying some template, it is incredibly difficult to debug the issue without the template. So please attach the template if possible. If you have confidentiality concerns, please attach a different workbook that exhibits the issue or you can send your workbook directly to [dtjohnson](https://github.com/dtjohnson) after creating the issue.\n\n## Contributing\n\nPull requests are very much welcome! If you'd like to contribute, please make sure to read this section carefully first.\n\n### How xlsx-populate Works\nAn XLSX workbook is essentially a zip of a bunch of XML files. xlsx-populate uses [JSZip](https://stuk.github.io/jszip/)\nto unzip the workbook and [sax-js](https://github.com/isaacs/sax-js) to parse the XML documents into corresponding objects.\nAs you call methods, xlsx-populate manipulates the content of those objects. When you generate the output, xlsx-populate\nuses [xmlbuilder-js](https://github.com/oozcitak/xmlbuilder-js) to convert the objects back to XML and then uses JSZip to\nrezip them back into a workbook.\n\nThe way in which xlsx-populate manipulates objects that are essentially the XML data is very different from the usual way\nparser/generator libraries work. Most other libraries will deserialize the XML into a rich object model. That model is then\nmanipulated and serialized back into XML upon generation. The challenge with this approach is that the Office Open XML spec is [HUGE](http://www.ecma-international.org/publications/standards/Ecma-376.htm).\nIt is extremely difficult for libraries to be able to support the entire specification. So these other libraries will deserialize\nonly the portion of the spec they support and any other content/styles in the workbook they don't support are lost. Since\nxlsx-populate just manipulates the XML data, it is able to preserve styles and other content while still only supporting\na fraction of the spec.\n\n### Setting up your Environment\nYou'll need to make sure [Node.js](https://nodejs.org/en/) v4+ is installed (as xlsx-populate uses ES6 syntax). You'll also\nneed to install [gulp](https://github.com/gulpjs/gulp):\n```bash\nnpm install -g gulp\n```\n\nMake sure you have [git](https://git-scm.com/) installed. Then follow [this guide](https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project) to see how to check out code, branch, and\nthen submit your code as a pull request. When you check out the code, you'll first need to install the npm dependencies.\nFrom the project root, run:\n```bash\nnpm install\n```\n\nThe default gulp task is set up to watch the source files for updates and retest while you edit. From the project root just run:\n```bash\ngulp\n```\n\nYou should see the test output in your console window. As you edit files the tests will run again and show you if you've\nbroken anything. (Note that if you've added new files you'll need to restart gulp for the new files to be watched.)\n\nNow write your code and make sure to add [Jasmine](https://jasmine.github.io/) unit tests. When you are finished, you need\nto build the code for the browser. Do that by running the gulp build command:\n```bash\ngulp build\n```\n\nVerify all is working, check in your code, and submit a pull request.\n\n### Pull Request Checklist\nTo make sure your code is consistent and high quality, please make sure to follow this checklist before submitting a pull request:\n * Your code must follow the getter/setter pattern using a single function for both. Check `arguments.length` or use `ArgHandler` to distinguish.\n * You must use valid [JSDoc](http://usejsdoc.org/) comments on *all* methods and classes. Use `@private` for private methods and `@ignore` for any public methods that are internal to xlsx-populate and should not be included in the public API docs.\n * You must adhere to the configured [ESLint](http://eslint.org/) linting rules. You can configure your IDE to display rule violations live or you can run `gulp lint` to see them.\n * Use [ES6](http://es6-features.org/#Constants) syntax. (This should be enforced by ESLint.)\n * Make sure to have full [Jasmine](https://jasmine.github.io/) unit test coverage for your code.\n * Make sure all tests pass successfully.\n * Whenever possible, do not modify/break existing API behavior. This module adheres to the [semantic versioning standard](https://docs.npmjs.com/getting-started/semantic-versioning). So any breaking changes will require a major release.\n * If your feature needs more documentation than just the JSDoc output, please add to the docs/template.md README file.\n\n\n### Gulp Tasks\n\nxlsx-populate uses [gulp](https://github.com/gulpjs/gulp) as a build tool. There are a number of tasks:\n\n* __browser__ - Transpile and build client-side JavaScript project bundle using [browserify](http://browserify.org/) and [babelify](https://github.com/babel/babelify).\n* __lint__ - Check project source code style using [ESLint](http://eslint.org/).\n* __unit__ - Run [Jasmine](https://jasmine.github.io/) unit tests.\n* __unit-browser__ - Run the unit tests in real browsers using [Karma](https://karma-runner.github.io/1.0/index.html).\n* __e2e-parse__ - End-to-end tests of parsing data out of sample workbooks that were created in Microsoft Excel.\n* __e2e-generate__ - End-to-end tests of generating workbooks using xlsx-populate. To verify the workbooks were truly generated correctly they need to be opened in Microsoft Excel and verified. This task automates this verification using the .NET Excel Interop library with [Edge.js](https://github.com/tjanczuk/edge) acting as a bridge between Node.js and C#. Note that these tests will _only_ run on Windows with Microsoft Excel and the [Primary Interop Assemblies installed](https://msdn.microsoft.com/en-us/library/kh3965hw.aspx).\n* __e2e-browser__ - End-to-end tests of usage of the browserify bundle in real browsers using Karma.\n* __blank__ - Convert a blank XLSX template into a JS buffer module to support [fromBlankAsync](#XlsxPopulate.fromBlankAsync).\n* __docs__ - Build this README doc by combining docs/template.md, API docs generated with [jsdoc-to-markdown](https://github.com/jsdoc2md/jsdoc-to-markdown), and a table of contents generated with [markdown-toc](https://github.com/jonschlinkert/markdown-toc).\n* __watch__ - Watch files for changes and then run associated gulp task. (Used by the default task.)\n* __build__ - Run all gulp tasks, including linting and tests, and build the docs and browser bundle.\n* __default__ - Run blank, unit, and docs tasks and watch the source files for those tasks for changes.\n\n## Style Reference\n\n### Styles\n|Style Name|Type|Description|\n| ------------- | ------------- | ----- |\n|bold|`boolean`|`true` for bold, `false` for not bold|\n|italic|`boolean`|`true` for italic, `false` for not italic|\n|underline|<code>boolean&#124;string</code>|`true` for single underline, `false` for no underline, `'double'` for double-underline|\n|strikethrough|`boolean`|`true` for strikethrough `false` for not strikethrough|\n|subscript|`boolean`|`true` for subscript, `false` for not subscript (cannot be combined with superscript)|\n|superscript|`boolean`|`true` for superscript, `false` for not superscript (cannot be combined with subscript)|\n|fontSize|`number`|Font size in points. Must be greater than 0.|\n|fontFamily|`string`|Name of font family.|\n|fontGenericFamily|`number`|1: Serif, 2: Sans Serif, 3: Monospace, |\n|fontScheme|`string`|`'minor'`\\|`'major'`\\|`'none'` |\n|fontColor|<code>Color&#124;string&#124;number</code>|Color of the font. If string, will set an RGB color. If number, will set a theme color.|\n|horizontalAlignment|`string`|Horizontal alignment. Allowed values: `'left'`, `'center'`, `'right'`, `'fill'`, `'justify'`, `'centerContinuous'`, `'distributed'`|\n|justifyLastLine|`boolean`|a.k.a Justified Distributed. Only applies when horizontalAlignment === `'distributed'`. A boolean value indicating if the cells justified or distributed alignment should be used on the last line of text. (This is typical for East Asian alignments but not typical in other contexts.)|\n|indent|`number`|Number of indents. Must be greater than or equal to 0.|\n|verticalAlignment|`string`|Vertical alignment. Allowed values: `'top'`, `'center'`, `'bottom'`, `'justify'`, `'distributed'`|\n|wrapText|`boolean`|`true` to wrap the text in the cell, `false` to not wrap.|\n|shrinkToFit|`boolean`|`true` to shrink the text in the cell to fit, `false` to not shrink.|\n|textDirection|`string`|Direction of the text. Allowed values: `'left-to-right'`, `'right-to-left'`|\n|textRotation|`number`|Counter-clockwise angle of rotation in degrees. Must be [-90, 90] where negative numbers indicate clockwise rotation.|\n|angleTextCounterclockwise|`boolean`|Shortcut for textRotation of 45 degrees.|\n|angleTextClockwise|`boolean`|Shortcut for textRotation of -45 degrees.|\n|rotateTextUp|`boolean`|Shortcut for textRotation of 90 degrees.|\n|rotateTextDown|`boolean`|Shortcut for textRotation of -90 degrees.|\n|verticalText|`boolean`|Special rotation that shows text vertical but individual letters are oriented normally. `true` to rotate, `false` to not rotate.|\n|fill|<code>SolidFill&#124;PatternFill&#124;GradientFill&#124;Color&#124;string&#124;number</code>|The cell fill. If Color, will set a solid fill with the color. If string, will set a solid RGB fill. If number, will set a solid theme color fill.|\n|border|<code>Borders&#124;Border&#124;string&#124;boolean</code>|The border settings. If string, will set outside borders to given border style. If true, will set outside border style to `'thin'`.|\n|borderColor|<code>Color&#124;string&#124;number</code>|Color of the borders. If string, will set an RGB color. If number, will set a theme color.|\n|borderStyle|`string`|Style of the outside borders. Allowed values: `'hair'`, `'dotted'`, `'dashDotDot'`, `'dashed'`, `'mediumDashDotDot'`, `'thin'`, `'slantDashDot'`, `'mediumDashDot'`, `'mediumDashed'`, `'medium'`, `'thick'`, `'double'`|\n|leftBorder, rightBorder, topBorder, bottomBorder, diagonalBorder|<code>Border&#124;string&#124;boolean</code>|The border settings for the given side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n|leftBorderColor, rightBorderColor, topBorderColor, bottomBorderColor, diagonalBorderColor|<code>Color&#124;string&#124;number</code>|Color of the given border. If string, will set an RGB color. If number, will set a theme color.|\n|leftBorderStyle, rightBorderStyle, topBorderStyle, bottomBorderStyle, diagonalBorderStyle|`string`|Style of the given side.|\n|diagonalBorderDirection|`string`|Direction of the diagonal border(s) from left to right. Allowed values: `'up'`, `'down'`, `'both'`|\n|numberFormat|`string`|Number format code. See docs [here](https://support.office.com/en-us/article/Number-format-codes-5026bbd6-04bc-48cd-bf33-80f18b4eae68?ui=en-US&rs=en-US&ad=US).|\n\n### Color\nAn object representing a color.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|[rgb]|`string`|RGB color code (e.g. `'ff0000'`). Either rgb or theme is required.|\n|[theme]|`number`|Index of a theme color. Either rgb or theme is required.|\n|[tint]|`number`|Optional tint value of the color from -1 to 1. Particularly useful for theme colors. 0.0 means no tint, -1.0 means 100% darken, and 1.0 means 100% lighten.|\n\n### Borders\nAn object representing all of the borders.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|[left]|<code>Border&#124;string&#124;boolean</code>|The border settings for the left side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n|[right]|<code>Border&#124;string&#124;boolean</code>|The border settings for the right side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n|[top]|<code>Border&#124;string&#124;boolean</code>|The border settings for the top side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n|[bottom]|<code>Border&#124;string&#124;boolean</code>|The border settings for the bottom side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n|[diagonal]|<code>Border&#124;string&#124;boolean</code>|The border settings for the diagonal side. If string, will set border to the given border style. If true, will set border style to `'thin'`.|\n\n### Border\nAn object representing an individual border.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|style|`string`|Style of the given border.|\n|color|<code>Color&#124;string&#124;number</code>|Color of the given border. If string, will set an RGB color. If number, will set a theme color.|\n|[direction]|`string`|For diagonal border, the direction of the border(s) from left to right. Allowed values: `'up'`, `'down'`, `'both'`|\n\n### SolidFill\nAn object representing a solid fill.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|type|`'solid'`||\n|color|<code>Color&#124;string&#124;number</code>|Color of the fill. If string, will set an RGB color. If number, will set a theme color.|\n\n### PatternFill\nAn object representing a pattern fill.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|type|`'pattern'`||\n|pattern|`string`|Name of the pattern. Allowed values: `'gray125'`, `'darkGray'`, `'mediumGray'`, `'lightGray'`, `'gray0625'`, `'darkHorizontal'`, `'darkVertical'`, `'darkDown'`, `'darkUp'`, `'darkGrid'`, `'darkTrellis'`, `'lightHorizontal'`, `'lightVertical'`, `'lightDown'`, `'lightUp'`, `'lightGrid'`, `'lightTrellis'`.|\n|foreground|<code>Color&#124;string&#124;number</code>|Color of the foreground. If string, will set an RGB color. If number, will set a theme color.|\n|background|<code>Color&#124;string&#124;number</code>|Color of the background. If string, will set an RGB color. If number, will set a theme color.|\n\n### GradientFill\nAn object representing a gradient fill.\n\n|Property|Type|Description|\n| ------------- | ------------- | ----- |\n|type|`'gradient'`||\n|[gradientType]|`string`|Type of gradient. Allowed values: `'linear'` (default), `'path'`. With a path gradient, a path is drawn between the top, left, right, and bottom values and a graident is draw from that path to the outside of the cell.|\n|stops|`Array.<{}>`||\n|stops[].position|`number`|The position of the stop from 0 to 1.|\n|stops[].color|<code>Color&#124;string&#124;number</code>|Color of the stop. If string, will set an RGB color. If number, will set a theme color.|\n|[angle]|`number`|If linear gradient, the angle of clockwise rotation of the gradient.|\n|[left]|`number`|If path gradient, the left position of the path as a percentage from 0 to 1.|\n|[right]|`number`|If path gradient, the right position of the path as a percentage from 0 to 1.|\n|[top]|`number`|If path gradient, the top position of the path as a percentage from 0 to 1.|\n|[bottom]|`number`|If path gradient, the bottom position of the path as a percentage from 0 to 1.|\n\n## API Reference\n### Classes\n\n<dl>\n<dt><a href=\"#Cell\">Cell</a></dt>\n<dd><p>A cell</p>\n</dd>\n<dt><a href=\"#Column\">Column</a></dt>\n<dd><p>A column.</p>\n</dd>\n<dt><a href=\"#FormulaError\">FormulaError</a></dt>\n<dd><p>A formula error (e.g. #DIV/0!).</p>\n</dd>\n<dt><a href=\"#PageBreaks\">PageBreaks</a></dt>\n<dd><p>PageBreaks</p>\n</dd>\n<dt><a href=\"#Range\">Range</a></dt>\n<dd><p>A range of cells.</p>\n</dd>\n<dt><a href=\"#RichText\">RichText</a></dt>\n<dd><p>A RichText class that contains many <a href=\"#RichTextFragment\">RichTextFragment</a>.</p>\n</dd>\n<dt><a href=\"#RichTextFragment\">RichTextFragment</a></dt>\n<dd><p>A Rich text fragment.</p>\n</dd>\n<dt><a href=\"#Row\">Row</a></dt>\n<dd><p>A row.</p>\n</dd>\n<dt><a href=\"#Sheet\">Sheet</a></dt>\n<dd><p>A worksheet.</p>\n</dd>\n<dt><a href=\"#Workbook\">Workbook</a></dt>\n<dd><p>A workbook.</p>\n</dd>\n</dl>\n\n### Objects\n\n<dl>\n<dt><a href=\"#XlsxPopulate\">XlsxPopulate</a> : <code>object</code></dt>\n<dd></dd>\n</dl>\n\n### Constants\n\n<dl>\n<dt><a href=\"#_\">_</a></dt>\n<dd><p>OOXML uses the CFB file format with Agile Encryption. The details of the encryption are here:\n<a href=\"https://msdn.microsoft.com/en-us/library/dd950165(v=office.12).aspx\">https://msdn.microsoft.com/en-us/library/dd950165(v=office.12).aspx</a></p>\n<p>Helpful guidance also take from this Github project:\n<a href=\"https://github.com/nolze/ms-offcrypto-tool\">https://github.com/nolze/ms-offcrypto-tool</a></p>\n</dd>\n</dl>\n\n### Typedefs\n\n<dl>\n<dt><a href=\"#PaneOptions\">PaneOptions</a> : <code>Object</code></dt>\n<dd><p><a href=\"https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.pane?view=openxml-2.8.1\">https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.pane?view=openxml-2.8.1</a></p>\n</dd>\n</dl>\n\n<a name=\"Cell\"></a>\n\n### Cell\nA cell\n\n**Kind**: global class  \n\n* [Cell](#Cell)\n    * _instance_\n        * [.active()](#Cell+active) ⇒ <code>boolean</code>\n        * [.active(active)](#Cell+active) ⇒ [<code>Cell</code>](#Cell)\n        * [.address([opts])](#Cell+address) ⇒ <code>string</code>\n        * [.column()](#Cell+column) ⇒ [<code>Column</code>](#Column)\n        * [.clear()](#Cell+clear) ⇒ [<code>Cell</code>](#Cell)\n        * [.columnName()](#Cell+columnName) ⇒ <code>string</code>\n        * [.columnNumber()](#Cell+columnNumber) ⇒ <code>number</code>\n        * [.find(pattern, [replacement])](#Cell+find) ⇒ <code>boolean</code>\n        * [.formula()](#Cell+formula) ⇒ <code>string</code>\n        * [.formula(formula)](#Cell+formula) ⇒ [<code>Cell</code>](#Cell)\n        * [.hyperlink()](#Cell+hyperlink) ⇒ <code>string</code> \\| <code>undefined</code>\n        * [.hyperlink(hyperlink)](#Cell+hyperlink) ⇒ [<code>Cell</code>](#Cell)\n        * [.hyperlink(opts)](#Cell+hyperlink) ⇒ [<code>Cell</code>](#Cell)\n        * [.dataValidation()](#Cell+dataValidation) ⇒ <code>object</code> \\| <code>undefined</code>\n        * [.dataValidation(dataValidation)](#Cell+dataValidation) ⇒ [<code>Cell</code>](#Cell)\n        * [.tap(callback)](#Cell+tap) ⇒ [<code>Cell</code>](#Cell)\n        * [.thru(callback)](#Cell+thru) ⇒ <code>\\*</code>\n        * [.rangeTo(cell)](#Cell+rangeTo) ⇒ [<code>Range</code>](#Range)\n        * [.relativeCell(rowOffset, columnOffset)](#Cell+relativeCell) ⇒ [<code>Cell</code>](#Cell)\n        * [.row()](#Cell+row) ⇒ [<code>Row</code>](#Row)\n        * [.rowNumber()](#Cell+rowNumber) ⇒ <code>number</code>\n        * [.sheet()](#Cell+sheet) ⇒ [<code>Sheet</code>](#Sheet)\n        * [.style(name)](#Cell+style) ⇒ <code>\\*</code>\n        * [.style(names)](#Cell+style) ⇒ <code>object.&lt;string, \\*&gt;</code>\n        * [.style(name, value)](#Cell+style) ⇒ [<code>Cell</code>](#Cell)\n        * [.style(name)](#Cell+style) ⇒ [<code>Range</code>](#Range)\n        * [.style(styles)](#Cell+style) ⇒ [<code>Cell</code>](#Cell)\n        * [.style(style)](#Cell+style) ⇒ [<code>Cell</code>](#Cell)\n        * [.value()](#Cell+value) ⇒ <code>string</code> \\| <code>boolean</code> \\| <code>number</code> \\| <code>Date</code> \\| [<code>RichText</code>](#RichText) \\| <code>undefined</code>\n        * [.value(value)](#Cell+value) ⇒ [<code>Cell</code>](#Cell)\n        * [.value()](#Cell+value) ⇒ [<code>Range</code>](#Range)\n        * [.workbook()](#Cell+workbook) ⇒ [<code>Workbook</code>](#Workbook)\n        * [.addHorizontalPageBreak()](#Cell+addHorizontalPageBreak) ⇒ [<code>Cell</code>](#Cell)\n    * _inner_\n        * [~tapCallback](#Cell..tapCallback) ⇒ <code>undefined</code>\n        * [~thruCallback](#Cell..thruCallback) ⇒ <code>\\*</code>\n\n<a name=\"Cell+active\"></a>\n\n#### cell.active() ⇒ <code>boolean</code>\nGets a value indicating whether the cell is the active cell in the sheet.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>boolean</code> - True if active, false otherwise.  \n<a name=\"Cell+active\"></a>\n\n#### cell.active(active) ⇒ [<code>Cell</code>](#Cell)\nMake the cell the active cell in the sheet.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| active | <code>boolean</code> | Must be set to `true`. Deactivating directly is not supported. To deactivate, you should activate a different cell instead. |\n\n<a name=\"Cell+address\"></a>\n\n#### cell.address([opts]) ⇒ <code>string</code>\nGet the address of the column.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>string</code> - The address  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| [opts] | <code>Object</code> | Options |\n| [opts.includeSheetName] | <code>boolean</code> | Include the sheet name in the address. |\n| [opts.rowAnchored] | <code>boolean</code> | Anchor the row. |\n| [opts.columnAnchored] | <code>boolean</code> | Anchor the column. |\n| [opts.anchored] | <code>boolean</code> | Anchor both the row and the column. |\n\n<a name=\"Cell+column\"></a>\n\n#### cell.column() ⇒ [<code>Column</code>](#Column)\nGets the parent column of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Column</code>](#Column) - The parent column.  \n<a name=\"Cell+clear\"></a>\n\n#### cell.clear() ⇒ [<code>Cell</code>](#Cell)\nClears the contents from the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n<a name=\"Cell+columnName\"></a>\n\n#### cell.columnName() ⇒ <code>string</code>\nGets the column name of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>string</code> - The column name.  \n<a name=\"Cell+columnNumber\"></a>\n\n#### cell.columnNumber() ⇒ <code>number</code>\nGets the column number of the cell (1-based).\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>number</code> - The column number.  \n<a name=\"Cell+find\"></a>\n\n#### cell.find(pattern, [replacement]) ⇒ <code>boolean</code>\nFind the given pattern in the cell and optionally replace it.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>boolean</code> - A flag indicating if the pattern was found.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| pattern | <code>string</code> \\| <code>RegExp</code> | The pattern to look for. Providing a string will result in a case-insensitive substring search. Use a RegExp for more sophisticated searches. |\n| [replacement] | <code>string</code> \\| <code>function</code> | The text to replace or a String.replace callback function. If pattern is a string, all occurrences of the pattern in the cell will be replaced. |\n\n<a name=\"Cell+formula\"></a>\n\n#### cell.formula() ⇒ <code>string</code>\nGets the formula in the cell. Note that if a formula was set as part of a range, the getter will return 'SHARED'. This is a limitation that may be addressed in a future release.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>string</code> - The formula in the cell.  \n<a name=\"Cell+formula\"></a>\n\n#### cell.formula(formula) ⇒ [<code>Cell</code>](#Cell)\nSets the formula in the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| formula | <code>string</code> | The formula to set. |\n\n<a name=\"Cell+hyperlink\"></a>\n\n#### cell.hyperlink() ⇒ <code>string</code> \\| <code>undefined</code>\nGets the hyperlink attached to the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>string</code> \\| <code>undefined</code> - The hyperlink or undefined if not set.  \n<a name=\"Cell+hyperlink\"></a>\n\n#### cell.hyperlink(hyperlink) ⇒ [<code>Cell</code>](#Cell)\nSet or clear the hyperlink on the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| hyperlink | <code>string</code> \\| [<code>Cell</code>](#Cell) \\| <code>undefined</code> | The hyperlink to set or undefined to clear. |\n\n<a name=\"Cell+hyperlink\"></a>\n\n#### cell.hyperlink(opts) ⇒ [<code>Cell</code>](#Cell)\nSet the hyperlink options on the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| opts | <code>Object</code> \\| [<code>Cell</code>](#Cell) | Options or Cell. If opts is a Cell then an internal hyperlink is added. |\n| [opts.hyperlink] | <code>string</code> \\| [<code>Cell</code>](#Cell) | The hyperlink to set, can be a Cell or an internal/external string. |\n| [opts.tooltip] | <code>string</code> | Additional text to help the user understand more about the hyperlink. |\n| [opts.email] | <code>string</code> | Email address, ignored if opts.hyperlink is set. |\n| [opts.emailSubject] | <code>string</code> | Email subject, ignored if opts.hyperlink is set. |\n\n<a name=\"Cell+dataValidation\"></a>\n\n#### cell.dataValidation() ⇒ <code>object</code> \\| <code>undefined</code>\nGets the data validation object attached to the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>object</code> \\| <code>undefined</code> - The data validation or undefined if not set.  \n<a name=\"Cell+dataValidation\"></a>\n\n#### cell.dataValidation(dataValidation) ⇒ [<code>Cell</code>](#Cell)\nSet or clear the data validation object of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| dataValidation | <code>object</code> \\| <code>undefined</code> | Object or null to clear. |\n\n<a name=\"Cell+tap\"></a>\n\n#### cell.tap(callback) ⇒ [<code>Cell</code>](#Cell)\nInvoke a callback on the cell and return the cell. Useful for method chaining.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| callback | [<code>tapCallback</code>](#Cell..tapCallback) | The callback function. |\n\n<a name=\"Cell+thru\"></a>\n\n#### cell.thru(callback) ⇒ <code>\\*</code>\nInvoke a callback on the cell and return the value provided by the callback. Useful for method chaining.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>\\*</code> - The return value of the callback.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| callback | [<code>thruCallback</code>](#Cell..thruCallback) | The callback function. |\n\n<a name=\"Cell+rangeTo\"></a>\n\n#### cell.rangeTo(cell) ⇒ [<code>Range</code>](#Range)\nCreate a range from this cell and another.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Range</code>](#Range) - The range.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| cell | [<code>Cell</code>](#Cell) \\| <code>string</code> | The other cell or cell address to range to. |\n\n<a name=\"Cell+relativeCell\"></a>\n\n#### cell.relativeCell(rowOffset, columnOffset) ⇒ [<code>Cell</code>](#Cell)\nReturns a cell with a relative position given the offsets provided.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The relative cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| rowOffset | <code>number</code> | The row offset (0 for the current row). |\n| columnOffset | <code>number</code> | The column offset (0 for the current column). |\n\n<a name=\"Cell+row\"></a>\n\n#### cell.row() ⇒ [<code>Row</code>](#Row)\nGets the parent row of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Row</code>](#Row) - The parent row.  \n<a name=\"Cell+rowNumber\"></a>\n\n#### cell.rowNumber() ⇒ <code>number</code>\nGets the row number of the cell (1-based).\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>number</code> - The row number.  \n<a name=\"Cell+sheet\"></a>\n\n#### cell.sheet() ⇒ [<code>Sheet</code>](#Sheet)\nGets the parent sheet.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Sheet</code>](#Sheet) - The parent sheet.  \n<a name=\"Cell+style\"></a>\n\n#### cell.style(name) ⇒ <code>\\*</code>\nGets an individual style.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>\\*</code> - The style.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| name | <code>string</code> | The name of the style. |\n\n<a name=\"Cell+style\"></a>\n\n#### cell.style(names) ⇒ <code>object.&lt;string, \\*&gt;</code>\nGets multiple styles.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>object.&lt;string, \\*&gt;</code> - Object whose keys are the style names and values are the styles.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| names | <code>Array.&lt;string&gt;</code> | The names of the style. |\n\n<a name=\"Cell+style\"></a>\n\n#### cell.style(name, value) ⇒ [<code>Cell</code>](#Cell)\nSets an individual style.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| name | <code>string</code> | The name of the style. |\n| value | <code>\\*</code> | The value to set. |\n\n<a name=\"Cell+style\"></a>\n\n#### cell.style(name) ⇒ [<code>Range</code>](#Range)\nSets the styles in the range starting with the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Range</code>](#Range) - The range that was set.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| name | <code>string</code> | The name of the style. |\n|  | <code>Array.&lt;Array.&lt;\\*&gt;&gt;</code> | 2D array of values to set. |\n\n<a name=\"Cell+style\"></a>\n\n#### cell.style(styles) ⇒ [<code>Cell</code>](#Cell)\nSets multiple styles.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| styles | <code>object.&lt;string, \\*&gt;</code> | Object whose keys are the style names and values are the styles to set. |\n\n<a name=\"Cell+style\"></a>\n\n#### cell.style(style) ⇒ [<code>Cell</code>](#Cell)\nSets to a specific style\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| style | [<code>Style</code>](#new_Style_new) | Style object given from stylesheet.createStyle |\n\n<a name=\"Cell+value\"></a>\n\n#### cell.value() ⇒ <code>string</code> \\| <code>boolean</code> \\| <code>number</code> \\| <code>Date</code> \\| [<code>RichText</code>](#RichText) \\| <code>undefined</code>\nGets the value of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: <code>string</code> \\| <code>boolean</code> \\| <code>number</code> \\| <code>Date</code> \\| [<code>RichText</code>](#RichText) \\| <code>undefined</code> - The value of the cell.  \n<a name=\"Cell+value\"></a>\n\n#### cell.value(value) ⇒ [<code>Cell</code>](#Cell)\nSets the value of the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| value | <code>string</code> \\| <code>boolean</code> \\| <code>number</code> \\| <code>null</code> \\| <code>undefined</code> \\| [<code>RichText</code>](#RichText) | The value to set. |\n\n<a name=\"Cell+value\"></a>\n\n#### cell.value() ⇒ [<code>Range</code>](#Range)\nSets the values in the range starting with the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Range</code>](#Range) - The range that was set.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n|  | <code>Array.&lt;Array.&lt;(string\\|boolean\\|number\\|null\\|undefined)&gt;&gt;</code> | 2D array of values to set. |\n\n<a name=\"Cell+workbook\"></a>\n\n#### cell.workbook() ⇒ [<code>Workbook</code>](#Workbook)\nGets the parent workbook.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Workbook</code>](#Workbook) - The parent workbook.  \n<a name=\"Cell+addHorizontalPageBreak\"></a>\n\n#### cell.addHorizontalPageBreak() ⇒ [<code>Cell</code>](#Cell)\nAppend horizontal page break after the cell.\n\n**Kind**: instance method of [<code>Cell</code>](#Cell)  \n**Returns**: [<code>Cell</code>](#Cell) - the cell.  \n<a name=\"Cell..tapCallback\"></a>\n\n#### Cell~tapCallback ⇒ <code>undefined</code>\nCallback used by tap.\n\n**Kind**: inner typedef of [<code>Cell</code>](#Cell)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| cell | [<code>Cell</code>](#Cell) | The cell |\n\n<a name=\"Cell..thruCallback\"></a>\n\n#### Cell~thruCallback ⇒ <code>\\*</code>\nCallback used by thru.\n\n**Kind**: inner typedef of [<code>Cell</code>](#Cell)  \n**Returns**: <code>\\*</code> - The value to return from thru.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| cell | [<code>Cell</code>](#Cell) | The cell |\n\n<a name=\"Column\"></a>\n\n### Column\nA column.\n\n**Kind**: global class  \n\n* [Column](#Column)\n    * [.address([opts])](#Column+address) ⇒ <code>string</code>\n    * [.cell(rowNumber)](#Column+cell) ⇒ [<code>Cell</code>](#Cell)\n    * [.columnName()](#Column+columnName) ⇒ <code>string</code>\n    * [.columnNumber()](#Column+columnNumber) ⇒ <code>number</code>\n    * [.hidden()](#Column+hidden) ⇒ <code>boolean</code>\n    * [.hidden(hidden)](#Column+hidden) ⇒ [<code>Column</code>](#Column)\n    * [.sheet()](#Column+sheet) ⇒ [<code>Sheet</code>](#Sheet)\n    * [.style(name)](#Column+style) ⇒ <code>\\*</code>\n    * [.style(names)](#Column+style) ⇒ <code>object.&lt;string, \\*&gt;</code>\n    * [.style(name, value)](#Column+style) ⇒ [<code>Cell</code>](#Cell)\n    * [.style(styles)](#Column+style) ⇒ [<code>Cell</code>](#Cell)\n    * [.style(style)](#Column+style) ⇒ [<code>Cell</code>](#Cell)\n    * [.width()](#Column+width) ⇒ <code>undefined</code> \\| <code>number</code>\n    * [.width(width)](#Column+width) ⇒ [<code>Column</code>](#Column)\n    * [.workbook()](#Column+workbook) ⇒ [<code>Workbook</code>](#Workbook)\n    * [.addPageBreak()](#Column+addPageBreak) ⇒ [<code>Column</code>](#Column)\n\n<a name=\"Column+address\"></a>\n\n#### column.address([opts]) ⇒ <code>string</code>\nGet the address of the column.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>string</code> - The address  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| [opts] | <code>Object</code> | Options |\n| [opts.includeSheetName] | <code>boolean</code> | Include the sheet name in the address. |\n| [opts.anchored] | <code>boolean</code> | Anchor the address. |\n\n<a name=\"Column+cell\"></a>\n\n#### column.cell(rowNumber) ⇒ [<code>Cell</code>](#Cell)\nGet a cell within the column.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell in the column with the given row number.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| rowNumber | <code>number</code> | The row number. |\n\n<a name=\"Column+columnName\"></a>\n\n#### column.columnName() ⇒ <code>string</code>\nGet the name of the column.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>string</code> - The column name.  \n<a name=\"Column+columnNumber\"></a>\n\n#### column.columnNumber() ⇒ <code>number</code>\nGet the number of the column.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>number</code> - The column number.  \n<a name=\"Column+hidden\"></a>\n\n#### column.hidden() ⇒ <code>boolean</code>\nGets a value indicating whether the column is hidden.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>boolean</code> - A flag indicating whether the column is hidden.  \n<a name=\"Column+hidden\"></a>\n\n#### column.hidden(hidden) ⇒ [<code>Column</code>](#Column)\nSets whether the column is hidden.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: [<code>Column</code>](#Column) - The column.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| hidden | <code>boolean</code> | A flag indicating whether to hide the column. |\n\n<a name=\"Column+sheet\"></a>\n\n#### column.sheet() ⇒ [<code>Sheet</code>](#Sheet)\nGet the parent sheet.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: [<code>Sheet</code>](#Sheet) - The parent sheet.  \n<a name=\"Column+style\"></a>\n\n#### column.style(name) ⇒ <code>\\*</code>\nGets an individual style.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>\\*</code> - The style.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| name | <code>string</code> | The name of the style. |\n\n<a name=\"Column+style\"></a>\n\n#### column.style(names) ⇒ <code>object.&lt;string, \\*&gt;</code>\nGets multiple styles.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: <code>object.&lt;string, \\*&gt;</code> - Object whose keys are the style names and values are the styles.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| names | <code>Array.&lt;string&gt;</code> | The names of the style. |\n\n<a name=\"Column+style\"></a>\n\n#### column.style(name, value) ⇒ [<code>Cell</code>](#Cell)\nSets an individual style.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| name | <code>string</code> | The name of the style. |\n| value | <code>\\*</code> | The value to set. |\n\n<a name=\"Column+style\"></a>\n\n#### column.style(styles) ⇒ [<code>Cell</code>](#Cell)\nSets multiple styles.\n\n**Kind**: instance method of [<code>Column</code>](#Column)  \n**Returns**: [<code>Cell</code>](#Cell) - The cell.  \n\n| Param | Type | ","repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"users":{"madvedd":true,"tiagoha":true,"dtjohnson":true,"marciofpa":true,"muralinit":true,"jarvis1024":true,"duartemendes":true,"mechanicalhuman":true,"rahulraghavankklm":true},"bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"license":"MIT","versions":{"0.0.1":{"name":"xlsx-populate","version":"0.0.1","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.0.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"3521d5120c7541dca25838f081ab295ebcfa3140","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.0.1.tgz","integrity":"sha512-AfQpBcFHth41icJUcdS6LTpcVNNoW8zHywLuJ6d/rRUETaCdk/YdK20nEO6z0W9+35ovZKLeZfEcW/3MMYMTtw==","signatures":[{"sig":"MEYCIQDDbJ8C/xyzxs4paHfP7jInJS/foH7vojnEY0UaFwsigQIhAMZuXzta0d5eHgTh/DykMyzz6MDfO9aC7/ZM/iTbNjuR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Workbook.js","_from":".","_shasum":"3521d5120c7541dca25838f081ab295ebcfa3140","gitHead":"5e6d842323f0c2d819f7ae30beb148f6d443db26","scripts":{"test":"jasmine-node test/"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"2.5.1","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"jszip":"^2.4.0","elementtree":"^0.1.6"},"devDependencies":{"jasmine-node":"^1.14.5"}},"0.0.2":{"name":"xlsx-populate","version":"0.0.2","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.0.2","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"9ee6f4ee22a5ece691efc6ecf36f8451f830e445","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.0.2.tgz","integrity":"sha512-D9Qi3aYwlgvaIeTxWvPD7NquwhWyYJCIElAN9ETWJ9HDzrud0TvfDv3TKWCUf/F2dLakDe9bbLYLBn5TDB992w==","signatures":[{"sig":"MEQCIETaN07UY+9hYxYANe6vY5ANptISKyCA/QTJfE4AnR0ZAiBcXi18Yhkf+tVTaGdFw0D/UDY/q9Mursbct9XJnFtWQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Workbook.js","_from":".","scripts":{"test":"jasmine-node test/"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"1.4.3","description":"Node.js module to populate XLSX templates.","directories":{},"dependencies":{"jszip":"^2.4.0","elementtree":"^0.1.6"},"devDependencies":{"jasmine-node":"^1.14.5"}},"0.0.3":{"name":"xlsx-populate","version":"0.0.3","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.0.3","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"f43b966fdc6715458c6bda8b97c8c4d116233d4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.0.3.tgz","integrity":"sha512-qiseG0mq4DqIUriM5E6G62id3kFB4aMLVdl2WJwqP0dqkT21Nac4iP4al+zO6gv+RoFUYan1pW00Ks73yBpDkg==","signatures":[{"sig":"MEQCIDMdNe3+HBUOSJ6VRVgvHrtO+TzhW5JhU57kw2VDxU+eAiBw5MZ2WRC6XIaPJGEp9Het+CrvxOEGsZ/0FwYst4hV9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Workbook.js","_from":".","_shasum":"f43b966fdc6715458c6bda8b97c8c4d116233d4a","gitHead":"13bb7f464f300770cb6b8f80c7f3ffb83e2b652a","scripts":{"test":"jasmine-node test/"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"1.4.14","description":"Node.js module to populate XLSX templates.","directories":{},"dependencies":{"jszip":"^2.4.0","elementtree":"^0.1.6"},"devDependencies":{"jasmine-node":"^1.14.5"}},"0.0.4":{"name":"xlsx-populate","version":"0.0.4","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.0.4","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"9e3f6c952c09f26101b6f764441aceabffa10258","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.0.4.tgz","integrity":"sha512-TVefYhHEBSgNcRD0QlxLsLoA7l3M+P9cHXlp9vnOkTN0sBvUS397OcmgYD7ox7QUY776WRIWqZOV8qrcWdkheA==","signatures":[{"sig":"MEUCIEaVmrF7wYfleNY91f3724sVMTbr4vGhA4pZkehP2hbpAiEAqlCzDLeYxNj4lKJPpTjtTSEwffiXJOTanABfRMAH2/c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"Workbook.js","_from":".","_shasum":"9e3f6c952c09f26101b6f764441aceabffa10258","gitHead":"91dd7fa734299129ec4d617c735e6ba3932bc8c0","scripts":{"test":"jasmine-node test/"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"2.5.1","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"0.12.0","dependencies":{"jszip":"^2.4.0","elementtree":"^0.1.6"},"devDependencies":{"jscs":"^1.11.3","jasmine-node":"^1.14.5"}},"0.0.5":{"name":"xlsx-populate","version":"0.0.5","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.0.5","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"85ef85f9d9b1a23608dba885cefb2527a380a561","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.0.5.tgz","integrity":"sha512-uCqhfE4U7nXV5HEjrhCO/g0O+QrxHNQxIxszVitOyI172+x0jgQJmJHVIqnK84TToqp/2jVG5097s4k9v5qxVQ==","signatures":[{"sig":"MEUCIQCzntPVaWSkAvcHAITxI8I3FBOulEr5yXmOWZnaUeu9rgIgHh1srPW/SG4cxYDfyx5qMhgkZ7ZDBCQ5YeQ6tILvrnY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"85ef85f9d9b1a23608dba885cefb2527a380a561","gitHead":"af2cc2df4b612f0149422aeb77d528af00bd98a5","scripts":{"docs":"node docs/generate","jscs":"jscs lib/","test":"jasmine-node test/","jshint":"jshint --reporter=node_modules/jshint-stylish lib/"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.6.0","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"jszip":"^2.4.0","elementtree":"^0.1.6"},"devDependencies":{"jscs":"^2.6.0","jshint":"^2.9.1-rc1","jasmine-node":"^1.14.5","jshint-stylish":"^2.1.0","jsdoc-to-markdown":"^1.2.1"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.0.5.tgz_1459557330424_0.5070891613140702","host":"packages-12-west.internal.npmjs.com"}},"0.1.0":{"name":"xlsx-populate","version":"0.1.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.1.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"0539aa447c936acabfd060a6f8852b033d57b41c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.1.0.tgz","integrity":"sha512-nQZoCgjWl8KAp4sT8BTbRL+atWcK+LIbySkeeeL7WtlK5oR9oQwsvV2A2K4AVHCXWLVpra5IQQSNUiLWzJf0EA==","signatures":[{"sig":"MEUCIEXwP7jXcdD1oSB+if4D16hA0d8MzSQY0bqW0ThfDRnPAiEA4VjCIRtLa2UHlA9wyKm1zgdXoIufMns4ZSlRJe1eIYM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"0539aa447c936acabfd060a6f8852b033d57b41c","gitHead":"4fde4365cc901cba91f816aed52a82f8408359fc","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint lib"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.6.0","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.1.0.tgz_1459818989650_0.4188400392886251","host":"packages-12-west.internal.npmjs.com"}},"0.1.1":{"name":"xlsx-populate","version":"0.1.1","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.1.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"5d4f4c7723b9cfb764af6d89d757086fa8c47bce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.1.1.tgz","integrity":"sha512-IJz1vwHdEzoOH4K0y2NCPcF4zPgNvyN+08KjJBijq3ip8fmLlTr4lHW7TeJVNgRBZY2CfV5BpTFETF3DNe2/Zg==","signatures":[{"sig":"MEQCIFpeqrpMgW6oneS5qQRC79Lzm2k5pM7HL8jACU2Gl4fAAiAYKORbGrNzlnIuTXHoR9lN7Hx+Jpy+ntID7AMvd3tKRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"5d4f4c7723b9cfb764af6d89d757086fa8c47bce","gitHead":"6d3fe540f0855ae6cdb67414e28f8d8a3c2196bd","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint lib"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.6.0","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.1.1.tgz_1459856242914_0.33592742308974266","host":"packages-12-west.internal.npmjs.com"}},"0.1.2":{"name":"xlsx-populate","version":"0.1.2","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.1.2","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"2b5f796333eba87a0d5269e12f6c3fe9cf8fa42a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.1.2.tgz","integrity":"sha512-OMJ8yCL7wcaGu4gHTv8ftToyQZ0TyEKbrKt5jMkKcdIg10uZR1EE2MRa8D0L9EuXd1+JTIzJIeNulqgxNrc7/g==","signatures":[{"sig":"MEYCIQDnO0eY26R73zm0sgmqCIcRmlevwSTudhBwS7n7YsyEdQIhAPejf/Fjs0plO+e7ZZs9QiqWD/qdXA9vfWBns1z1vfnn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"2b5f796333eba87a0d5269e12f6c3fe9cf8fa42a","gitHead":"8d73be8b8b5942a1af19d8244ef2323bef7c1e16","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint lib"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.6.0","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.1.2.tgz_1459856511189_0.6729686418548226","host":"packages-12-west.internal.npmjs.com"}},"0.2.0":{"name":"xlsx-populate","version":"0.2.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.2.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"e506f27b5a1cae8b949651834803361862d32880","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.2.0.tgz","integrity":"sha512-+Wn9MbkqRlvfAYO59j7EKsfTKp1JaJPpPjbSLsQQdQj0geK4Zb+IgUBaVY6DrRG4U0QmFi+ls1aHzu0HKPwaFg==","signatures":[{"sig":"MEYCIQC+HsxPAXOmbCWK0nQA6/67liuRMxHYsizOt/QcMllX6QIhAN3F4IR24gTGHP/G448JJUqjH8qOHxjQos2PnZ0AoY/z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"e506f27b5a1cae8b949651834803361862d32880","gitHead":"41d81a4eb12dc31f6f107ab9641145f02cf09bba","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint lib"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.6.0","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","replacestream":"^4.0.0","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.2.0.tgz_1461201910650_0.4464430785737932","host":"packages-16-east.internal.npmjs.com"}},"0.3.0":{"name":"xlsx-populate","version":"0.3.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.3.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"ff586ebcd0a240f6b65457b984564314b6d7453b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.3.0.tgz","integrity":"sha512-XZmnS8jcWK4/rQ54pyFYoop3/z8Kzeo0WeosDUOUWtA3B05UaqGjpeCtxwo/pxpt1rVj3CQtUbewTKwNK76eHw==","signatures":[{"sig":"MEUCIQDZWwN+porgY84FmxpCIwAO89ppYAj77WYR2oMTVxosiQIgSQQB1DOT/OlQax7d4Fu1i2AevrbPeK5ifQGTlIqDj2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"ff586ebcd0a240f6b65457b984564314b6d7453b","gitHead":"6690c9f0ac7e1eec800e54011376f5c390b24985","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint */*.js"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.9.3","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"6.2.1","dependencies":{"jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"gulp":"^3.9.1","eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","gulp-eslint":"^2.0.0","gulp-jasmine":"^2.3.0","run-sequence":"^1.2.1","replacestream":"^4.0.0","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.3.0.tgz_1466860619710_0.1541239833459258","host":"packages-16-east.internal.npmjs.com"}},"0.4.0":{"name":"xlsx-populate","version":"0.4.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@0.4.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"f18375e3d2feed3c81958fb2dd5216215cb76b61","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-0.4.0.tgz","integrity":"sha512-69W9yPolDoJut6roTF29jByTDD1smu6M1dQCqai9zmr+5OlvIoQTRqkB/m1JQO9AA1SPyS53R4z5JheltJYdfg==","signatures":[{"sig":"MEUCIQCh+2YXXo9ljmTLtJDY9jIgNr9PkirbL1ZuD6d2QGhnwQIgbtBQSgRAfdsb39Maq2UOVaGRbEFBpHmZnJKHWiDoB5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/Workbook.js","_from":".","_shasum":"f18375e3d2feed3c81958fb2dd5216215cb76b61","gitHead":"11c680fa24314aaa3897ad36babc88c87b291e4a","scripts":{"docs":"node docs/generate","test":"jasmine","eslint":"eslint */*.js"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"3.10.3","description":"Node.js module to populate XLSX templates.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.2.0","jszip":"^2.4.0","xpath":"0.0.22","xmldom":"^0.1.22"},"devDependencies":{"gulp":"^3.9.1","eslint":"^2.6.0","jasmine":"^2.4.1","proxyquire":"^1.7.4","gulp-eslint":"^2.0.0","gulp-jasmine":"^2.3.0","run-sequence":"^1.2.1","replacestream":"^4.0.0","jsdoc-to-markdown":"^1.3.3"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-0.4.0.tgz_1477085642872_0.0002453508786857128","host":"packages-12-west.internal.npmjs.com"}},"1.0.0":{"name":"xlsx-populate","version":"1.0.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.0.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"b3fe150290e3333d373b1b6a21353e04bc70316c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.0.0.tgz","integrity":"sha512-haLLNbm16Ef7rfqhOB15XVLmJm15NIb153CW+LJSlVUvu2F66PgS10Dzb7PIMPHdckGT/LB8JTpiqdCDOfUvWQ==","signatures":[{"sig":"MEQCIB7e7QS3uLTdpZV2+dA2hLmFcqOOuQqH128sByP+0hNJAiAafGLQigHSi+TSxOszrvZZdHI9Ma47zubJynoyjO3SgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"b3fe150290e3333d373b1b6a21353e04bc70316c","gitHead":"3e787ab115171354480c2820546bbb40035ff21b","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","bluebird":"^3.4.7","xmlbuilder":"^8.2.2","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.0.0.tgz_1488124645026_0.9652088200673461","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"xlsx-populate","version":"1.1.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.1.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"05de9b7fe703a2a424ac2233d8b035d0018eedfd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.1.0.tgz","integrity":"sha512-63MVb3A0puhgaGLTmJNfAf8PTlYVrIGZC0nyykrja8Y1EvJi1Fg5uT8dsVGfYt8Pe5fxGy3jlY6AB63GNDYIgg==","signatures":[{"sig":"MEUCIQD3+nFbd8DdUwMfdZ8+d/hcYCiLZkOttbeHOAy+nFdbvQIgeCiGy7PZLgIOW/R2e8ESqKUc95JZjmiPEPUy1kLmv58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"05de9b7fe703a2a424ac2233d8b035d0018eedfd","gitHead":"95ca189b41f7e141f69f2e512e51325fff89a4c1","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","bluebird":"^3.4.7","xmlbuilder":"^8.2.2","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.1.0.tgz_1488590854770_0.03484027227386832","host":"packages-18-east.internal.npmjs.com"}},"1.2.0":{"name":"xlsx-populate","version":"1.2.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.2.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"ddca340b9a5f9fa2a78b2841f22d5fbf77d87b90","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.2.0.tgz","integrity":"sha512-AsKUh+JF4oW2ZZgu5C+R8KysWtmLoLQwgKIGHGKsoqdxOf2DWj6e5kTgAKaZ6GIz5EYMBNbwh/JoDLW8sB+32Q==","signatures":[{"sig":"MEQCIHbheL2UsH/3DYn4u1qS8x83D8n56A5SxrGAOhW7VNhxAiAHUu0ST31YfSYewBrLaYxd0ulKsUjaQ3OweLzOilMALQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"ddca340b9a5f9fa2a78b2841f22d5fbf77d87b90","gitHead":"5c653d1a5ed1e45a70983785def104749be26d8e","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","bluebird":"^3.4.7","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.2.0.tgz_1489112971687_0.1055926401168108","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"xlsx-populate","version":"1.2.1","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.2.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"9c713f1390b405cc12c5c93946014ba8ac8beb09","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.2.1.tgz","integrity":"sha512-eTt5mVgD2uGGDZpgG6x5PA2JVwWcle6z8f3X9vFNENgfx3uQtzEiJonpnVK+hLB9guw4aQVxUBQ9ncN/hYVTjQ==","signatures":[{"sig":"MEQCIE+Q3UrsP1LBIMdchj2RDKsUMwrp1+ZVIVcrud9+6iZzAiBzDG3bYqX+myMN2AyPvQ2PUyPD+Yp40IBHvR6tv8qs2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"9c713f1390b405cc12c5c93946014ba8ac8beb09","gitHead":"515e5113bc8dcb23d152382a8fb768534f595dbc","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","bluebird":"^3.4.7","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.2.1.tgz_1489148688970_0.8483448326587677","host":"packages-18-east.internal.npmjs.com"}},"1.3.0":{"name":"xlsx-populate","version":"1.3.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.3.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"449e5ca0a94e6a675366497d801ed8f926955c72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.3.0.tgz","integrity":"sha512-R0WygywhXgrTOqmybhze3kJKQACv8q5+QvtpIqRn8sCSAvlB+XjcChjBLNHgpGnn0+h9FzaeZ97a5GHbbon6eQ==","signatures":[{"sig":"MEUCIQCh3vZvQ2B338VhWOM0Vurn1cBu9FPzpiov/EsMhn9ipwIgU/Lbvq1ZilUz1qI89JDStuMIxy4BHgdUzuf9IbOVidg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"449e5ca0a94e6a675366497d801ed8f926955c72","gitHead":"11b4c84864b11a8aaf0f3a16e5b9870ebdb23b60","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.3.0.tgz_1489248190446_0.9667810390237719","host":"packages-18-east.internal.npmjs.com"}},"1.4.0":{"name":"xlsx-populate","version":"1.4.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.4.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"d71cec7387e6cc16917bf5c416f7ab12fcc05678","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.4.0.tgz","integrity":"sha512-2sU+ewqgH2w8AdT+2Oeq9UGDol+T2ABRVs107CIru+uqRs7BgVtqZNAoBcV/Q4mcgq32eJPLF/KuVHfdUlIFFQ==","signatures":[{"sig":"MEUCIG6s5LNdtNomcwGqs6mAZui97U+QrHq89XoMoU11mCG/AiEAxeTpaIyiHLe5OEaOXhjNEF/KCaqtNowTc/6dU8I3c88=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"d71cec7387e6cc16917bf5c416f7ab12fcc05678","gitHead":"6d545479810d6a4be6fba78083f5bd622e24a623","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.4.0.tgz_1489257280897_0.6934515433385968","host":"packages-12-west.internal.npmjs.com"}},"1.4.1":{"name":"xlsx-populate","version":"1.4.1","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.4.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"d758296fb910951e838e07425bf254d2d1be57ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.4.1.tgz","integrity":"sha512-CY9weD62/CjjHqMBrx62WfijsUumcXTZXAjIzkEQ7Ga1c7yvkhSohEoNiSof3QQORKophFAG0S9VpN9ErxS+YQ==","signatures":[{"sig":"MEYCIQCCLplqL4b5E9uwEaYTvq2RLwTY9nHC4J7/l8owO+axNAIhAOIne0PQ6T8Hj0pIZa/eHOHZscN8UvQ2intAocy6Q/5J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"d758296fb910951e838e07425bf254d2d1be57ff","gitHead":"669cfcc94e7d5752f61125078c826c06fd29e43f","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.4.1.tgz_1489327594394_0.16312275058589876","host":"packages-12-west.internal.npmjs.com"}},"1.4.2":{"name":"xlsx-populate","version":"1.4.2","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.4.2","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"e423ece967a50336463d3e158445c3bd1b3a8b66","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.4.2.tgz","integrity":"sha512-tNjVv7BE/7WFw4NzfTlhzgJzRyJmMN5DMoZe2P2E3wjUe6Mcjgv5oyNfr/5ZiEzR2Wm1nsG8TEJXAwU+IpzSKw==","signatures":[{"sig":"MEUCIDk9fBQOSmbuhKd7CEvCsd6+K+oX2sA1I/SUyzDsI6xUAiEAsjXfW509fOd7xGdhgQa+QXxvd4z0kPJF2iun1qwQheI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"e423ece967a50336463d3e158445c3bd1b3a8b66","gitHead":"917f7512e99541dad1478cbdd48f23f561616688","scripts":{"test":"jasmine"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4","escape-string-regexp":"^1.0.5"},"devDependencies":{"gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","gulp-jasmine":"^2.4.2","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.4.2.tgz_1489348257181_0.3253729760181159","host":"packages-12-west.internal.npmjs.com"}},"1.5.0":{"name":"xlsx-populate","version":"1.5.0","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"850b485e8bd51aa699bab5a55a4f1172fc72b6c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.0.tgz","integrity":"sha512-gPabDeYISRengRozKsIHIuGqWVAiY6oSPNAvFB3RV4fw5hzpiLxZWf72MCf1GvGyByRZtZSH19RpFLEtriRQsw==","signatures":[{"sig":"MEQCIDMdeQv7fZsWY62WOaswiRp6RANOpxxW4fwWWhHSp6vkAiBJaaVRClOcgfa+bddrVmUFZIBYqLrSOJQwcNV/Gi956w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"850b485e8bd51aa699bab5a55a4f1172fc72b6c9","gitHead":"fbd34d49aa6eee65a21048f1bd716ebcf7d09e10","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.0.tgz_1490465292372_0.2892050400841981","host":"packages-18-east.internal.npmjs.com"}},"1.5.1":{"name":"xlsx-populate","version":"1.5.1","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"f880765c389ce650f88b41d48bb8c9524e1c1289","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.1.tgz","integrity":"sha512-H0u3IJ6RKXyNXNftdEGNztc0GTqzM/ZfUORw1v021RMDF/1eaPB1oX1Im7ole2ckUb/w8QpGFsesqSNiqSy5pg==","signatures":[{"sig":"MEUCIAqcKwCQSY5xqtcVK+ZjxxcKXHm13sSpP1vhrzsXM1srAiEA4NJ5mGMKIuhzPuwknk0+a45fT2gU5zVTV2SR1Kux76g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"f880765c389ce650f88b41d48bb8c9524e1c1289","gitHead":"4a833cd64b62ca26d189319429b6e911a5e78fd4","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.1.tgz_1490639559418_0.36377162556163967","host":"packages-18-east.internal.npmjs.com"}},"1.5.2":{"name":"xlsx-populate","version":"1.5.2","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.2","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"6e70b112d7852b1a3a8acb283a5190ac7ac12682","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.2.tgz","integrity":"sha512-n7oYwsHS1NNJi/koBOV67+J3w82gD5pa+97gsptvA0DMUzVNrx/koDNrHeKMzvcYZoW4G9Hod4IIhhG7WSUAwQ==","signatures":[{"sig":"MEUCIQDUXZw51L73d5YigxAo1eaqFRTFbkW03ZNNBElY4UlY3QIgSe2hOIYdCaBRRVBrYPvLIJ0W45p3HYELR9WA8ejKvRc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"6e70b112d7852b1a3a8acb283a5190ac7ac12682","gitHead":"e63cc2453ab5c8d39326830628426d4ba5ee6e14","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.2.tgz_1490700555193_0.507954700384289","host":"packages-12-west.internal.npmjs.com"}},"1.5.3":{"name":"xlsx-populate","version":"1.5.3","author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.3","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"041015efde1e8c0ab2f5115de8a8afc091db83b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.3.tgz","integrity":"sha512-0HYCQ2Z3EUaYTRTkBGpsVq86gmy590/sMVEtrCy//d677oqLgWG+wzx03xvilOM9T5nVQTp1VXaC9fj5cYffYw==","signatures":[{"sig":"MEYCIQCQYWkvSr15mCPKF908NHkzPzsgEdbZZ6yvpMxdMd9HCgIhAJC4LJHvIsfp/bzAKU9Y7BlnukKm/Ah8mRDwEimmp0vC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"041015efde1e8c0ab2f5115de8a8afc091db83b9","gitHead":"4135ea6975099dccff4f35000cf2f81365b999e1","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.3.tgz_1490749380644_0.11212685657665133","host":"packages-18-east.internal.npmjs.com"}},"1.5.4":{"name":"xlsx-populate","version":"1.5.4","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.4","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"67ddbd78e860ac07c3ea14798ab760dd3445d1dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.4.tgz","integrity":"sha512-S8Hc10We1GqKwZyOXDbWU5XlRQ+TrcHgptkTVEP4QQfVbu9dlwkzetob1BuGYfUKdCEtqMjxxFB41KPhYWa4UA==","signatures":[{"sig":"MEMCID8JOWE14kEUINf1gn6Q6L3+zB6NCRHljoNVL9HGPWVYAh9G+RMcMweeqWOZBG1lBj7BsUCGr4UR1240wQh+Ftof","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"67ddbd78e860ac07c3ea14798ab760dd3445d1dd","gitHead":"caa49df1cfabfb6584b20aa9bd1ac43091c3314e","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"6.9.2","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.4.tgz_1491010781130_0.06830788752995431","host":"packages-18-east.internal.npmjs.com"}},"1.5.5":{"name":"xlsx-populate","version":"1.5.5","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.5.5","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"f8c7b6fa751f85f87a4ed3f8f29848ede7112f9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.5.5.tgz","integrity":"sha512-kOo3PLsD1661gcf0C6dNtG3GdWoXZnk8hpiFPYnW76kDGSoBz4XbnvjHsCpzCvhukV9QiLsELb9CnVhW24kF6g==","signatures":[{"sig":"MEQCIB0TPaa8tm7Stq8kJNSzxiM0prm7I+5Kgf3nM/1kib2VAiBE4GC5f5+otPvxWnhBP/QE1JyLJUK9rZxWB2i107RMfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"f8c7b6fa751f85f87a4ed3f8f29848ede7112f9d","gitHead":"159d8f1d9ef4dc819c005bea375ce36a3b109cb9","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"sax":"^1.2.2","debug":"^2.6.0","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.5.5.tgz_1491996914684_0.0428440417163074","host":"packages-18-east.internal.npmjs.com"}},"1.6.0":{"name":"xlsx-populate","version":"1.6.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.6.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"5e0113a26ed2a939c7f6bd8fbfa1c1c63e27f7dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.6.0.tgz","integrity":"sha512-rJWaxlHGahMvg/Em1/kHgEE4vjVteXNCApyTVeYyWPzIJQQ0w5M2UYD4JOMY0TvvEKCM0JBn8yQqet6mPK9+Mg==","signatures":[{"sig":"MEUCIQDozlIIZF1StkbbA1Xxa80klBzymYLIn9kGaPFfdLUELwIgHmPoS3mxt1aQUDVUTpOF5nMhmNW3DDSVDx4Wz7SEFn0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"5e0113a26ed2a939c7f6bd8fbfa1c1c63e27f7dd","gitHead":"c042a9fb1a9c2ae86da1a278f7189c138bee9dad","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.6.0.tgz_1492872796714_0.5749578285031021","host":"packages-18-east.internal.npmjs.com"}},"1.6.1":{"name":"xlsx-populate","version":"1.6.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.6.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"85d16f3978c178132f32d6c1cb318c05ce57cc36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.6.1.tgz","integrity":"sha512-Y3Fsc/8r/RzPw9r857C1u7UrlHD+oLwy/9XsBkALokShff53YyW/RCD++57SSIaFiYZd9MZFx1IOxKGY8Ta5vQ==","signatures":[{"sig":"MEYCIQC5CHe/9AME97ydRsPmv2PEaKrOnpH1FLOxIMjbnxSuJAIhAKgROkzzNGEz216QtDdBlgzASPqrAw90V0U5TaoG3exb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"85d16f3978c178132f32d6c1cb318c05ce57cc36","gitHead":"692280664d3f32feb591392143e63859b9994c96","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.6.1.tgz_1493589292549_0.10817160294391215","host":"packages-18-east.internal.npmjs.com"}},"1.7.0":{"name":"xlsx-populate","version":"1.7.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.7.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"00e789670446d1d099d0529f854d8fcb18a09203","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.7.0.tgz","integrity":"sha512-IMv0mdvO7aevrxk/FsruNPJdClANnKWZeWV+MmjJD1k9kR/OMDTM1iP1nqOr0NjL6eiJiY/AOF3wTbWLBEfC1w==","signatures":[{"sig":"MEUCIQDmaU0C/6PNUihVErVDYkNszScRITtahfP6098rsqYKOQIgV8IqcqdxxMv7ieaQAZp6BX7sNpWA/W1KdE74yRdatDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","_from":".","_shasum":"00e789670446d1d099d0529f854d8fcb18a09203","gitHead":"ccddd9e8ca885e831b29d097b00fd19ce9f2b61d","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"4.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"7.10.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.7.0.tgz_1495589545802_0.0953956632874906","host":"s3://npm-registry-packages"}},"1.8.0":{"name":"xlsx-populate","version":"1.8.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.8.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"2abb0c1e0610d84cf0bf457929c66be817738422","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.8.0.tgz","integrity":"sha512-sTREq9FfL4h0GgSfmPDjW+iS82Nc0zOq6Q11FFQhPbmgCDPaX2/qhIIZwtAXkKHZPexJL6SxAgfDKA16V7st1w==","signatures":[{"sig":"MEQCIGj3IqawSrBJD5m/ThR5ptcN4w9MPtUq8ES7+4FKbe+vAiBBxAo0rP+wu9vzolQ0pCR+ASrM8AFe/YBt+GB2tqsr1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"05d4568ff434c04494aefb39c600097668820e43","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.8.0.tgz_1497749643653_0.1312752035446465","host":"s3://npm-registry-packages"}},"1.8.1":{"name":"xlsx-populate","version":"1.8.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.8.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"4eb5457f8f5a9d7df01080f0a996b91e80e58983","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.8.1.tgz","integrity":"sha512-4+lFEShxxK6BOMCy4303u2HM7TxxydRuLcVl/FHH+fblywLTzCT5E9ZhtJ0GX1YuXdqA5V+Y3hLu54+kQsf/uA==","signatures":[{"sig":"MEQCIH4CzH3wjlYhMCKOti7iBQNWYus2xUorFyfhUsSHfb+4AiBtvMdm9Zw/AIHmYjUWc3LELJIHZbO48qXLuJ074ALe5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"c984e8b5598d0f403fecdd7fa78acf38002589f0","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.8.1.tgz_1498568594417_0.42219494422897696","host":"s3://npm-registry-packages"}},"1.8.2":{"name":"xlsx-populate","version":"1.8.2","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.8.2","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"cf5927d3c8b2db32fdeb8e62895f8aa3dbdf7a53","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.8.2.tgz","integrity":"sha512-A3TfmGMS4LxGR/Yq7n0Zl1U670v2fieE/LO6e3i5Mm9awTuVHnlNruOFuQ5fxgi6PfowuAET9IcAF8K3Ux/wzA==","signatures":[{"sig":"MEUCIQCbsVhHVJGf7LK8RCHhH50L9mrDaku9bpRppi9MvvFvqQIgS3IAZ0dWjAfQrePeMcLbjre/yB7n0MmYSSIOKZt/KZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"b42c239c0c641b44492ac2562e4b92af1e978b9b","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.8.2.tgz_1499387071302_0.8626711296383291","host":"s3://npm-registry-packages"}},"1.9.0":{"name":"xlsx-populate","version":"1.9.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.9.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"437a4e384aac2057e19d759727df61d68ba3046e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.9.0.tgz","integrity":"sha512-DSLMTXeFQmk6Vb6mTnYib8O8l/eUpEBmCqhU1/mmRB2Mj/6WqMX+CHIjnKrHkO6r4SRvisp3Iw+D+w+aya24FQ==","signatures":[{"sig":"MEUCIQDi/FX6GZKReMjkK/FxBHI4u/eKYOQUoRdhOGKL6rRH/gIgVoOcG8isJoSZMaZeINRjOFSNBpiGr9WA2BlWH5BASEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"678fd82a4d7f468660d423649aeb26dc3568d40f","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.9.0.tgz_1501934161062_0.2829442769289017","host":"s3://npm-registry-packages"}},"1.10.0":{"name":"xlsx-populate","version":"1.10.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.10.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"3dc12a3a696d0e9a664cf4166caeda2e40fbf7af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.10.0.tgz","integrity":"sha512-zBO7fa3kQDt+mgykLaKvkWq0aFKc1ULDhheLJpLHiESDQmaCo3eF6S/1VZfBy08Mf2yfvr53sLYKeiwAa6cxLQ==","signatures":[{"sig":"MEQCIFWPKiTtUH9uQZwuaUVFIy+871we8Jlz80RKEwT8mwIqAiAzcEohJ9yuFAVvX22fu/hdUcfK4R2mDxZnoc2GEn2AKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"15c6fcf19d23d909338c8968960b30793eb08766","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.0.3","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.1.0","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.10.0.tgz_1501935156338_0.16087915725074708","host":"s3://npm-registry-packages"}},"1.11.0":{"name":"xlsx-populate","version":"1.11.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.11.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"0c7e413baf0de9a106a31dcd0e5ab7557418dc1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.11.0.tgz","integrity":"sha512-ixWOxlicdjitcrs1hBHlGBZs6zMizRyI+kLlc8SX2ZyErCk+VEuhvxtBpOmny2X7qfoka58bDiAlg3FdTFghUQ==","signatures":[{"sig":"MEUCIQCKUwfzdhqUCq+SkJqFIB3Cs2BQz0EGKrzi99nKMoWOYQIgNGwGycMKHUR67FpfBz/brlFpe+RMy2GOxaCss68sIh0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"f569f13b961461e135ad9fe168094a0b18147115","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.3.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.2.1","dependencies":{"sax":"^1.2.2","jszip":"^3.1.3","lodash":"^4.17.4"},"devDependencies":{"edge":"^6.5.1","glob":"^7.1.1","gulp":"^3.9.1","babel":"^6.5.2","karma":"^1.5.0","eslint":"^3.13.1","jasmine":"^2.5.3","babelify":"^7.3.0","watchify":"^3.8.0","browserify":"^13.3.0","proxyquire":"^1.7.10","gulp-eslint":"^3.0.1","gulp-uglify":"^2.0.0","markdown-toc":"^1.1.0","run-sequence":"^1.2.2","vinyl-buffer":"^1.0.0","jsondiffpatch":"^0.2.4","karma-jasmine":"^1.1.0","proxyquireify":"^3.2.1","replacestream":"^4.0.2","gulp-sourcemaps":"^2.4.0","karma-browserify":"^5.1.1","markdown-include":"^0.4.3","jsdoc-to-markdown":"^2.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.22.0","vinyl-source-stream":"^1.1.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.11.0.tgz_1504747566394_0.7453365565743297","host":"s3://npm-registry-packages"}},"1.12.0":{"name":"xlsx-populate","version":"1.12.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.12.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"2f8e6cc72aa1efda5264b6b1174fe06f3df1def4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.12.0.tgz","integrity":"sha512-Rs/fdaNGPR8K16kieJkuGRz6f/qychUPvNQ30Qh3IMM8oMkgI/LiK7d5q4MnG1Cwe6LfI9uojot7rCbxAuK0DA==","signatures":[{"sig":"MEUCIGeuOlk/UvZbOYGxJY/gDJRqF/E13jcsKNVNJZbfnU9fAiEA0uZNUyGQPdLiYzwPVg10g5/5GnC0G4+yrZWGFifo4FY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"052362ec85471c9df8991305e15e769c2e4aa3ed","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"9.4.0","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.12.0.tgz_1517163082043_0.9365139140281826","host":"s3://npm-registry-packages"}},"1.13.0":{"name":"xlsx-populate","version":"1.13.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.13.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"6271bd50a0507c143de126865630626e07f87b2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.13.0.tgz","integrity":"sha512-bs3cW1uZz+jSnpkePCyW+IsjhvPI0iWtCIAfXW5f/e4KrupqOn/xiQFCky/j74IyiJT6O769sh2+WrdvEpF4xQ==","signatures":[{"sig":"MEYCIQDIpo8s0TiXSj1hLu3b0pgAQ9viKmjy9X40sPxxNA+AYQIhAMutzlZt7EHt7Ybi50oMU+drdWkmcbNL6RZE4uE5YksG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/XlsxPopulate.js","gitHead":"702aee39cefe5ac09c7f343200e25d7305a77da3","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"9.4.0","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate-1.13.0.tgz_1517279054812_0.5349650548305362","host":"s3://npm-registry-packages"}},"1.14.0":{"name":"xlsx-populate","version":"1.14.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.14.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"e01c2cc82ef87db3d7ab3635092e5d85f45df9fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.14.0.tgz","fileCount":45,"integrity":"sha512-pnMSD0idmfWmiygCp9oZ4JHSvahTXqSz/Ho4ZDrVEqjH6cssaMD+4zCHk+5l5Fl5BkpkFu5lRnZFpCjfEWQlhg==","signatures":[{"sig":"MEUCIQCd7k4zfk2f4EwgmGr7ScBF9KvzDbxSYfR6bFSZpmh9HQIgDDhDB1MGsVCn/22Fff6RFdJsroaAO4BJTsWErwjyEgE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5912438},"main":"lib/XlsxPopulate.js","gitHead":"32921c0b357828cf4c9065c60aa5ab9ad5aefd62","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"9.4.0","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.14.0_1518402733293_0.7697673115696202","host":"s3://npm-registry-packages"}},"1.14.1":{"name":"xlsx-populate","version":"1.14.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.14.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"87a3962f8c15e4592c24e1372d1ace6a70f5b954","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.14.1.tgz","fileCount":45,"integrity":"sha512-0UfrQEUuq5n4jKJssbZbZM6Y5lnyE4AZnBvaVB81jJlJCR2paw9oxDLuHGyhcNlJR8TN3n+0zVjM5ERYPwI+MA==","signatures":[{"sig":"MEUCIQDHIRxZsIYc4MlBxEKLQdigbh/H8vhTN69F/U+U0CtVwwIgDSjsag+LvE3UYHkS6Gx6zu2fQLW7209//nwkyU52+Xk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5913265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5jIVCRA9TVsSAnZWagAAl7kP/ifgaIJWsHkB4jjfjXwB\nJykNgvCqfJ6U0Czs4Q7E00qUn6c9Y4TjOs8x/fJ7BlJxSHIQvh/pRXjC4f6H\nqkMT99LMTOtnBHvGgKg325Ez8pdNmsvtQvijzJ8WwZX/vJIqFDwi+MD/ewf3\nE6/N+feZhMVvhz5x/PS3Qo5QNvqGzhVhso7Su7mMor22/9rw+4Ojat/j7di/\n93zh9lc7BUIVM8fTeJtkmsNzzZurrlgYL9o/YZ0m2Xw5PB5D2k5jZhrDapXB\ndb0gbXDkW+POtYvGdmMeGzH25ucLkTbeKVdA4py9qG6O/CDpykOL9vxmPwAQ\n5CZeiUZqk9FdYd2oCdC3Nc+ddy1Bvwgd5VKTeWU7Uqi8dh8G6AGqE56qGRhq\nbwWYbMfGmVs4YSssXZH1f3f8u02ruqTIGCxUBSFAkZebnIOcJgc1cnhJsy8Z\nW/ojxzTHM8SRyGWaKT5VOyKjLvjs0mrZGxvYg4jF83Ru3YhlsxlbqULy4A8R\n5yp5Ag0Klx4ytlITtD9ts5vRxnGwvtfyEVeMS6KgJFZTvZHmN1EbL4H9/X7g\nBV970VVFK2omOOmYKUiUR7swt1jnZIdoM4xC+vvOGP6hfXKo0Ncee26I9ZrJ\n243xa29iepPZ8rwd/eg4dF8H1b5+lBE/cTJzn2zjkCP1/9q7IIaHkr1rohIy\n9t2E\r\n=0ECs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","gitHead":"6a945d8fe46860686ce84bf32c7d6e9f66c85f67","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.14.1_1525035538343_0.3093853996442091","host":"s3://npm-registry-packages"}},"1.15.0":{"name":"xlsx-populate","version":"1.15.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.15.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"2c89a7913488b2fbbb945926edab65a3c8062fc4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.15.0.tgz","fileCount":46,"integrity":"sha512-Hd8UPcKbK5xMcmKa31ZyxhA2TdOe/IFcy0mH/ToSlewl7iKnCEpx+6t93oIoqZ/frxqLgizzMKdUf73meyMucg==","signatures":[{"sig":"MEQCIFK1ShSUy5APSokwfVV5JFp7DOwTFLcadQReoxEfkbGSAiBuJ48gNcJ4IQnN7U4U6BzJO6xVAucEvCYAslXO0dKoiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5937674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8uHnCRA9TVsSAnZWagAAOvAP/jHU0J6j8KyxrQ866n+l\n7fbBfJyBdKtI4b5Ul9JkqNTnC0UPAuqUVBtxGQ5ATGjI84kR/ImRYzYS+U6L\neMLQ1ZUjWonh/nwTHkI5fPbAq7mZZikydEYw5FLwR12jtCDxbqRDTXOoBarv\nE/dBE2FSrxTuAY5DVtvZzNS+UkOa7yui3E6HrFMNlMTyTHIuMfMGwGvS9fXJ\nvR1ph/Zt6dBSDK11rto6S9woDabcEJcZ8y5+/Oe6PHoXSrzaXxtC7C/ITP7P\nbX5xIQmCVI6Fc8UKtxgcLZ9Cm3dahwJZwfWNZVF42ksp2Z3SlvBJB0+4eYHn\nzdeejjHwIId7Tu+a970MhzkVJZPcRW6YNGJ0Om6v+ZCc7q2lkpG4SiHjbBb/\nvM8qaYepe0ijcR1JITmudoxxqs93Dp6O4dgmxywtoVR3o1w18+wR8j24ylSJ\nyY8tYNssPQXppkX0yJjjCbrTWnNoIsxNe0J+CTVbLQKfVcXF8ywBIYrOC6hp\namk++o9l+EqTGqarlyzdy2ONjHdewP2dnQM/onrMuv4dhuX+xz7sgmeMc/Xb\n1cFoCgetSiP9x82g7SVaN9pzs2I00ts6aveCvoLn0Fkms8ECqmTzOK+BwVW5\nEhyY525NwuQa/NflF3vs5n6xg3TuuB30/IhIJMp2O92VqFpy1HoZf1Mhm+iM\nW4lV\r\n=EnGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","gitHead":"1d196f6a74aad604598548b92b085f0159fcfbd4","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.15.0_1525866980274_0.6426263269632733","host":"s3://npm-registry-packages"}},"1.16.0":{"name":"xlsx-populate","version":"1.16.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.16.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"5fa225eef605cb716a698f7b09a6cbcb114ceb6d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.16.0.tgz","fileCount":46,"integrity":"sha512-7T/0J9gsQDlgQ9O1UQ/aQ8Zlru+E8A2q8GPf42TCGe1dd6Yyr5xRclytXPDs2DGmjd3rGIBbsj1un3VeS3yArg==","signatures":[{"sig":"MEUCIQDD83inGvuhi4YnOEGzMgPadw41VEvvTGA5ozcUKmFJdQIgD339QI9HWr4DYKvPXfj2CABoVjBU1RYS6NK2SJSCdmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5946653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8wExCRA9TVsSAnZWagAA5WIQAKKLLkMcDRl+jU6Rm8D5\nInYosuZlh6htmw/9k2pp/uL7uMkv2HBtoH0+U8iPJ+d20efmWBeqXFPi3dgu\nk1Kv5aQKLuB50S1QogwB3PHa/exZRPvWoEz+779K9rI2CeYrQe2CmIf5XRSH\nZHSyAGJAWE+CR2TORhyxEVN1L09HYHX5aAEUEb6peh62omwU7paUilVD23LP\n7a6MT5uKOJDNVGmXZtQHVpgcw6WtmX7Lg70zfZVEZD71d060y9vMn5Rd/qql\nR5mXsh4tn6+rcQcGUuHn6Q5TzT3t140Yleq3joZYcJd0Nb730PAWfYfI+kLe\nxiayv2mghcfWSd0cJY5lutuuiN2trFTI8kocmWJHTX1IAT8VqtAs1Dptv4Zx\nsXABYAWgx8FXWz2IkJJPrn1oaYHd/VXHaRfRNYkM2JR7DISBZch8Bfd1WG8C\nkK6n67wMCyZWcQT1aKal6ay0COug1qxblaGgVyKwiO2LsR8Fohz+c0hGEBgm\nab5tBBO7+VCHWcGHTlDnnJdahOo70cplh+pMoH9sjpvi0GatCTb15UtDVh1+\n6KV0QJmoi9nSJdMwn3P0vToOk7SPksMqzGWuORM+v4PoLZKPltjit9pFJ3rq\n+N2bsv07a1QbxYWP1GWR3eDXwjL+1Tfp67Ezb81kwhcyg8kfsQ+ZHlwokiuy\nVKiK\r\n=RuEd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","gitHead":"41788be422bbf970f9f2261f71b0330702551d99","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"cfb":"^1.0.2","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.4"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.0","edge-js":"^9.3.2","jasmine":"^2.9.0","babelify":"^8.0.0","watchify":"^3.9.0","babel-core":"^6.26.0","browserify":"^15.2.0","proxyquire":"^1.8.0","gulp-eslint":"^4.0.1","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.2.5","karma-jasmine":"^1.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.3","karma-browserify":"^5.1.3","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","babel-preset-es2015":"^6.24.1","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.16.0_1525874991161_0.14080269636210763","host":"s3://npm-registry-packages"}},"1.17.0":{"name":"xlsx-populate","version":"1.17.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.17.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"af48ab54f83badd81d6114f3d4f7b0af6a0d839d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.17.0.tgz","fileCount":48,"integrity":"sha512-fvtXHhrrDuRVOZ9qzcBpa9tuHA3RgQGzwIp4I/CHyg+nBV4FkV1DyHfRLYW0ds/OW9bTbYCC2iLxsxsDKu4aFQ==","signatures":[{"sig":"MEYCIQCdlPtPNaP86gZKuqp9PlE1MUHnyztQDX0FhTh/DYdcXAIhAK/HFkoFvFbt9Kb7YKiTNFfeThLHRRezHvG9OV/iRYdi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14515234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCfZTCRA9TVsSAnZWagAAaE0P/R+5hE0dyqjKDjFsNLKA\ndlqBv3Rlk9AZeCkK/O2UQd0QIBTtKwHecN3J3Cx3iB3Ab7mSXAT5srYastNN\nC7c9uPnbGtZXtwzxnds0LFEy0h5xVHIVVMgt2xKjENYcPnjd2T5xTtzgQ8uk\n3Es2EcCE4l+FEjDKkHDbbCqhnneBYGsGxeG5cytR6DV729dXehIYvgi32Yhr\n7ECr1/Cp4gOl2oQ3wSx48jDOANd2+n3JjpqgnHj7BxDckI68C2QQSbkohFwA\nXrLtf9kFmoKh5f3QUJ1f1PuL6BKDRUNQG/VeeG73q1TMs3IpSDbjJYjInfv7\nil7BrUM3Df8ZxTuqIBnR5SM0KG9bx6OO3xUKb/z1Irw+geZNT2qK7M0qyduO\ncJTMWYJdHwf3yKhJVqA/dI4gc2jDKRCnFgeU49fWYRxcQblhh5/XWapPLQMp\ne945yWIaea/mana1SeHEJGt8LHoEzlLLQaf9jztLwVGMnS76tNguvjP/soVm\nhrGFOij/AtYsCRRuMT1dZoBbXvZFRF3IvPi0T9I4tyIkRyPlqVNn8rvhlJrO\nz3aAESd9fwuZjf5jPNgfmbO6NizdJ0pucD/dX3CJVhWH2ioX4LJYMXffN2Sp\n8B0jdyO8kPr38FxiOORghCncgd5LSX1KZn2rCLNA06bpvACEsuNtqkgVfvlV\nHm5W\r\n=1eJQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"958275ef3b3bdd1d249758de1e04c9af8be2ba2b","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"5.6.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"cfb":"^1.0.7","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.2","edge-js":"^10.1.0","jasmine":"^3.1.0","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.3.27","babel-core":"^6.26.3","browserify":"^16.2.2","proxyquire":"^2.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.10","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.2.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.17.0_1527379537167_0.49738620691661284","host":"s3://npm-registry-packages"}},"1.17.1":{"name":"xlsx-populate","version":"1.17.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.17.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"9d9bb522fd97c4b1239f026a9dafbc6de0178c75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.17.1.tgz","fileCount":48,"integrity":"sha512-Wyqrv6rzN8eeMUu/6UjB8UB4L0L+FTs7KYqCMARZ5WlNqhInAmw/fu52ptsNUwDR79pzVlSLEL28pQloaOjCYA==","signatures":[{"sig":"MEQCIEsqbBrcJqnOzM88TLYmyQ+5E6jqZHLYnwSdmojE1GtPAiAtJ3ztbP6EmdI5CMcZ11AGD6WxR/nVIYdbp0vqM/nBVg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14504913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNBJtCRA9TVsSAnZWagAAkjEP/18IgM5HBeXp5CDnRx9K\nFqGfW+1p323Gdp29c8+wjWtDJpi1uENjvoiPxlIh992UMh0AZFU3xZGQWJYP\nWYqWw4Tz67C+tMijO7eiw5/mLNX/wN2T1LUQf/womO4izLnEoDnCGcN4Ki5q\niqc6enN9kfzR5dy6z4WyKutusWoDxO3TjaBCj5GAW5kspZkC29152PHvRo/0\nuJ2f/Z5lreOpAN65j5n4BgxSRA6M0uMV2SuJQ0UlZwyeQyoI0aey2NmPcPY4\nHezPe+xxnVvSbX+KY0RPqjshJyMs5vxosYJ48b3n16n8Ft13hUWYMm9IaI8O\n1sokAHofTOoy8SyFOuDWJ5v9BHp/UHELDd7zwbcpaqnQp/gRcuWWb4b+1CIz\nNmc7GVbqZJWnK3GSvLfEjR9/pU3s07mr4lPTr+CB25NUYwYXeFXrLRHjxH4S\ncBgBe8Nd/UTe3FEbAuKbmgxlSsm03sFgnkZcliWkKiGJwq2yAOUuHd9UsR4H\n+eKyad5S64Tw6hARuQtaTE0iJPj0CQirvKp8uNgPVXtpVkeX52vWLzXc/Nsi\nXXCNugoAMheGBnDYqY/wWfutAo5Ixq6JjqSeFJfkgzlRFPZfGYrZvzoundER\nl554EZ6zbGP2nXtwUGHAS0/Zn3U9T478Xfs/QFmmZoEV8DFT7oxUNEIm6u/5\nKfDP\r\n=M1Ta\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"dc320decc8043c68d07420c7f36f826d5c82cc96","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"eddiecorrigall@gmail.com"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.5.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"cfb":"^1.0.7","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.2","edge-js":"^10.1.0","jasmine":"^3.1.0","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.3.27","babel-core":"^6.26.3","browserify":"^16.2.2","proxyquire":"^2.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.10","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.2.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.17.1_1546916459337_0.9099087670700348","host":"s3://npm-registry-packages"}},"1.18.0":{"name":"xlsx-populate","version":"1.18.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.18.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"5d9806b2e63975bcb583267cff5d35e5f396a17d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.18.0.tgz","fileCount":62,"integrity":"sha512-kolSI49ZWHsGf67VcSE1cQ5vMezAXEMM1auhkvY5HSFiJAV0qqT/nPW5Vey8PvaQyNaUpkjOmQ3TtmGCVmdxcQ==","signatures":[{"sig":"MEUCIBKTQTDZM2CCnCC9xHzh8NixJSWod2kYhcdd9oWfacGnAiEAgzam2BreMEqiZdRsaarvI6C+DGIj4Rhr8gC9sEtMF/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14537571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPOZtCRA9TVsSAnZWagAA+LMP+QFaF28ExBHYpmtpM1ec\no2w+XuJGe722gw6JP3BqCQlY8MRGhkKnSdLL15wl/tq0oWfItipWveuniSB8\n+ubbZ/UID4SMhZSgkqtA99F1VN2aowMOsKNpcivf7qdZC4u2Yo+H3ytqQ6wi\nuHZ9g6C/uTUkBLMnltZy3UwgcRXbZpNzLLgUosOFDgQDHtXlHeGj3mCD4nod\nuLZiJHYIF7Zl44zJb2hRc4CG1e4gE6dtizdUutDW76nUbdfi8XBQafEYBuyS\n0BIKUHd3KaNPl3wnoEOW/64hDDPsM55hLLZzHQXZPKQIWr4E8Q5/ORfpHo9W\nkAJzJ7nAXzqRvBFN4GUzcPw3jJfEyg8uqMfPXSfTfdCHFfjadRewyQhOfoUm\njgqyu7lLq049kC0t4tBOZ0EfR6L/qcd+MnD9gN7WBYXEWfn92atJSb9sCGqZ\nk4VC631JHOGcXbd6nHDQzs2KF6+pdbu9YBdSa7CCCOuu22ZDQCoTg9sQiwqt\nONVH6XE1LmTr0GpIgfIe8+pp9xd4V4ezncuS3f9dSm+jDtv5YbZeY0xlUulS\nrrC8AqQfcu40RMMlnvRZA2KwqJrgRoWEtmoWN2lhnfJoavkD0JaqtTSVnjJM\npVNZqt1YwliNw6yTOv4vmbF3btToJySPS+1pdz8/v+TJzg0uChmgQYZJOOiB\nJj4n\r\n=zbY4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"7e246eae09578e9d99f77a9e242510428d44b4e4","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"eddiecorrigall@gmail.com"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.5.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"11.6.0","dependencies":{"cfb":"^1.0.7","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.2","edge-js":"^10.1.0","jasmine":"^3.1.0","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.3.27","babel-core":"^6.26.3","browserify":"^16.2.2","proxyquire":"^2.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.10","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.2.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.18.0_1547495019736_0.4534000888360923","host":"s3://npm-registry-packages"}},"1.19.0":{"name":"xlsx-populate","version":"1.19.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.19.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"e8efdc0e0b20d8e62ade1ec641ef7addb1b14e24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.19.0.tgz","fileCount":48,"integrity":"sha512-dEpBCtr656v/HSpIbkxIwtTTk6Wbkj/weUzwdjWKLSMHcehTc+Yw/iCh0falGKrpi3jkz4ph4RwMiKa6WdtdJQ==","signatures":[{"sig":"MEUCIQDLe4hHIVBYd+EINsCBiK2WlU05k+zSnrlh0AwwkpXX8QIgK0lu4NYrhb6YjLGlWySRe+Sni+lkV6gIC87KF4Jzpyw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14526913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPfe0CRA9TVsSAnZWagAAwUYP/j3YRNxqD0o6FxiTExt5\n+R8zUVd6LTk1gTEHu/1IxBkpjrh/+qixIC0UViMpHqbJ7iUKPNZVXEsJAjRg\nM2LQ8Qe7zAARVLAfZFcYv9RSoBnepcudJS/Di5bQskIxYtFJ7Q9hiDJhe5Vt\nnVgPaaXr8uZtqrzF1HaQMKa+cG3HVPluPmAJUloeuvi9O5jZhzZi9PF+R9Gs\n37Yzu4WpKRo3mRCt7UzhkhnPEI1+EMWi3LhwPQ8sjrQXmGkTRJPK5/i5XcqY\noR7VQBN33MKRRMuOuNZG374DUXDFKY7hKNAhcT9p2qJUfAL+g8KBaipl2N07\nhebgM2grchfbG9aA9TCxsm5OZVTw6GNmZjqvbQ+Cqp99LIiuIhDFfh07oELe\nEdqi1tXeAqcY4B33NHSWSSXMOQYEHYTgCsqmY8bRilWMSofNlQgPk6wJQOgt\nId1DveMeagjX3CVVLBccerOcfrjBtN9qCINniCpif6xJeSofy+/CTAXczjAa\nHdGiEYNh4MKXDkDb/1vh1iIWaLjI5fUqs3a9dTiT2ENmBXBuJgo0MFXWPy6G\nZshHmjYv4Omz+zfP1GHaegl7nEytr3MOVnyoxU6f/xZ/QQDSNEWHrpznnAGt\nTqT0gNiJINGdLdN82kLe7GD25fjVvFgrXmEBXnZ9ek73Khzs/R87XXoIFLMk\nZuRz\r\n=PU1m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"6a042d96cd4f606cf122d1bd2011a581424b3f39","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"eddiecorrigall@gmail.com"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.5.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"11.6.0","dependencies":{"cfb":"^1.0.7","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.2","edge-js":"^10.1.0","jasmine":"^3.1.0","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.3.27","babel-core":"^6.26.3","browserify":"^16.2.2","proxyquire":"^2.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.10","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.2.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.19.0_1547564978942_0.9709164897434579","host":"s3://npm-registry-packages"}},"1.19.1":{"name":"xlsx-populate","version":"1.19.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.19.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"92defb8314f1b41c880c94f8b3ee9c483cac06ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.19.1.tgz","fileCount":48,"integrity":"sha512-rcV9MO8ltDJxc98K+tJxCQtrHmgtOy0eifrShs5pH9RI6uFskMMR7KNp9zvb/MKn35XkOSJEhiQTfj0Opy2I2w==","signatures":[{"sig":"MEQCICGkVJMv6vgyVVP6szTjl/MMqbKQz5wfyR1G4aQkXv4hAiAKv3GtJyY1UNON7tM9gQtAFQHJwkY2V9+A/5jo6qwsYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14536834,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY3BYCRA9TVsSAnZWagAA41EP/i1QTL6bRVBnURalIamm\nFbKS/rXl2P6mUUlZsc9nPFDlT55s/TXbC4FKZgz7AwUVjDKfkruvi5qTo7eu\n9xEM07QtZ1M7tfed73mFXb4ZO93L4qxoTRpKipKX24EdJZYVXEcUPNuKHzgQ\nW0+mEp1wAXICrmtHr0HIi0BJGI7rmRLzR7G1wTrYZov2zshgf+IJd+E49Nks\nLBFpHoWDbxps3kSGJHBgn5jhm7OZdm2SzqMCOvSPsy7QLQTJDxyHaOqITHDN\nZ5MGNlChs+pp7WsXgtH+LTj2BTMJ7yjVLstED+S+mNNmzqHsoRoDUn5zPqBZ\nEeX1JCONGX21LT5+CNpKHc6DA/l32jaiEMPtmknIk1oHnlVwNjPSqvpyswLw\n/QXacJfPZ+s1vw90hAvoB9pEcT4ybuVYIIIK+KNDlduFCX5MixibGgtbayj3\n5rRI46x1p8FdzC2Sz+T3Iepb6xVCOiS1JOgbQWsm8tzuCv0fw0apcQ8x8+jD\nx18mpemOUvxNMUTCLldY4pQGXSjrsh/tt891VQkxWwAx/i+F1r7GTdQlvYFg\nk8tRVjJrbIVEjlX2Xhm4Y5IWqgQiFWP4Q3gWDTOBjldskLP0tJOJtj95Q8Yv\n0Lf5oetsIKAzWLWxw6P+RfHvWVhthSOylmQdPqSnX6tUznAGn7OGHKToxPaH\niFU0\r\n=VG2i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"0a63f33332b159f21970c80808151ac97f6a7d60","scripts":{"test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json"},"_npmUser":{"name":"anonymous","email":"eddiecorrigall@gmail.com"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.5.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"11.7.0","dependencies":{"cfb":"^1.0.7","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.2","gulp":"^3.9.1","karma":"^2.0.2","edge-js":"^10.1.0","jasmine":"^3.1.0","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.3.27","babel-core":"^6.26.3","browserify":"^16.2.2","proxyquire":"^2.0.1","gulp-eslint":"^4.0.2","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.0","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.10","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.2.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.19.1_1550020694704_0.8072951097599885","host":"s3://npm-registry-packages"}},"1.20.0":{"name":"xlsx-populate","version":"1.20.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.20.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"7c6879751a251604dfbc7a613182846860f63526","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.20.0.tgz","fileCount":51,"integrity":"sha512-KHku5tSeqI0NfM/zmaZ4DO1mlu10GUF/1T2FUuiuMeJXBsbmWOna/eJIcGAaVQMKYOIETOtz1VVnYTSHR5sZMg==","signatures":[{"sig":"MEQCIFEN9JUIxQRxGE6/zB0OTXIPtmqAXNbpJ0XjaUvhD0f7AiA7cea+s30wzH1hfJn18JG3aIUrLSx3eOPnopfvSx1nsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15164262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNKmrCRA9TVsSAnZWagAANmkP/0bqRP5CZ8Fh7QIjNrgo\n8H1TV2TB3bdC52+qmKij/go7DELbshOknQzfxKQcIhX8Vt93NBdmEl1/LM02\nvPNZPppEcNyTYyl87MtprcDz0zP94FaXStxDGqVRER+aBWexhr7wk3qveMMv\nNCrcbdzeBEvvzFivbScOAtet+yTUb6+dsnxG3+DETrz25RG7RmsJn42LXhQh\nkC8mMeM7Tdjl+41WBSAFUMYCdyoOiT56xSXI5H5eH2nhHOgif20c0Gp1NE4T\nqGB7HKyH8absklcZVX+QUuvftUKy8NPwfRCr65YyBTJZAPg0DtdDg9yECCIx\ny1tg6slw9VKXCth1iQDtlSTEInq8gxAKUqB5osK223tfknV6DCIdfwkgB6fN\nLT1NRruXh4MFO2gL1qaPyxFvHAoOLjzFg4s8Np14iytA3IdsitSCvNH/VD9f\nMHX4zYZglTNaAojW/9cITsNXIF+h0FRFDX2FEKdUW7PY/yw6llZGR9isZ23m\nEj5CempX9gL0YSTxNZLXQG8/JrovGXzP/uZW1drvrCUhLjajQy3eWA73q9jl\nwCle4GxjARrmkddrdEq34p3QD8lauz96JfYXnDQ/1XfxwoiqkxjsEwm/QGFT\n2ufHkzNAiDYcB21tauUjnPF3A2Es0XZ+IzuvE3S/yCcYoz8Ti9YrASsANhLc\nCzId\r\n=B87n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"574bf35ff727b29b6444183bac0972046a2562a1","scripts":{"docs":"gulp docs","test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json","test:windows":"npm-run-all test e2e-parse e2e-generate"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.9.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"cfb":"^1.1.0","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.11"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.3","gulp":"^3.9.1","karma":"^2.0.5","edge-js":"^10.3.1","jasmine":"^3.3.1","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.4.9","babel-core":"^6.26.3","browserify":"^16.2.3","proxyquire":"^2.1.0","gulp-eslint":"^4.0.2","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","npm-run-all":"^4.1.5","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.11","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.3.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.20.0_1563732394349_0.17351618583015327","host":"s3://npm-registry-packages"}},"1.20.1":{"name":"xlsx-populate","version":"1.20.1","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.20.1","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"71714a0b3efd0c928f24038002286255bf01fc0a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.20.1.tgz","fileCount":51,"integrity":"sha512-128l+3CWPJaI0keGQ6G6HaqWhHdQ8AbfhX7G/Ouy/uq5yKv/O6hJOg+IqJp8zOcx9eLimVIfyNVyjZmEZ0Zhcw==","signatures":[{"sig":"MEUCIQC4+shwVgl8phRhV56j7KeE0hY5pNsdbpxf92/toEduwQIgMNn2c8plRDhiVktr2Tra+u0c+ihPSHc17IRw1zadJMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15174235,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRb45CRA9TVsSAnZWagAAo3kQAIinZFFdTNANt7qwmju2\nLmVQV4bVgYl2/gtEoNIcjU+VZCv8x2N4lf+ebhb+z1Xh8v9lsiU20k4NFVQ/\nppUrU/NLT/rR4JFbHKULw8E2l1r6XoeF4VLsRPJJHE1YLnvSf6BqNqtNnoTO\nZAMuAL6Bp6uFMDdItpuJE2CRCHUgrdknnnkdYjOO17oyCTgIDbFyGMuPWTFQ\npuMFqpREGG/TpUjJsBmWBtQ337a6WCZNHcx0XbNlvKYns1rJeVEMcD/3tCYt\ncWyY/0C8bysQhqr2UfLkRxw3XGM3mSydZLX7aHTEa0b69x048EHmIPLXDR4t\n6owkNkmGDDfSMzByidxKg4ZWFCa1YvYsKkfNx4XzAV08/LtjRZGvoZoFWcxi\nuyj5ZDTW37pt63GvEt6OHOCBnDamdiK0qE3K94xMe4K63ny9U6EPS1mnbzbu\nEBMFtnXnxhuVd9vS1/obxpwjmAGoWitDYd8u3nCAwmk21DE2vKWJa+PoLR34\nf/6kBrdxmDkf1HiMuVI7GGcvOzUDXIhFB6LYcead4SGuLUBgH+pFw/NHOscE\n69TinKpjom5VuhDCofDB9eeFilmX1tpCJnhwz26XwYzWS+xqBms4OH/54pqB\noOnTGDTHdARkS7+eYEFyf1ymAdvepA+EUtUIXa7zNj3G+vUjoLpMUYpEJ3x7\nWY3i\r\n=JBgO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"4b621777f9ea6984950c525dbeb20186da973282","scripts":{"docs":"gulp docs","test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json","test:windows":"npm-run-all test e2e-parse e2e-generate"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.9.0","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"cfb":"^1.1.0","sax":"^1.2.4","jszip":"^3.1.5","lodash":"^4.17.11"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.3","gulp":"^3.9.1","karma":"^2.0.5","edge-js":"^10.3.1","jasmine":"^3.3.1","babelify":"^8.0.0","watchify":"^3.11.0","uglify-js":"^3.4.9","babel-core":"^6.26.3","browserify":"^16.2.3","proxyquire":"^2.1.0","gulp-eslint":"^4.0.2","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","npm-run-all":"^4.1.5","markdown-toc":"^1.2.0","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.3.11","karma-jasmine":"^1.1.2","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","karma-browserify":"^5.3.0","markdown-include":"^0.4.3","jsdoc-to-markdown":"^4.0.1","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^1.0.8","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.20.1_1564851768646_0.1502417851722453","host":"s3://npm-registry-packages"}},"1.21.0":{"name":"xlsx-populate","version":"1.21.0","keywords":["excel","workbook","xlsx","parse","generate","populate","template","browser","style","formatting","encryption","password"],"author":{"name":"Dave T. Johnson","email":"dave@dtjohnson.net"},"license":"MIT","_id":"xlsx-populate@1.21.0","maintainers":[{"name":"anonymous","email":"dave@dtjohnson.net"}],"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"homepage":"https://github.com/dtjohnson/xlsx-populate#readme","bugs":{"url":"https://github.com/dtjohnson/xlsx-populate/issues"},"dist":{"shasum":"f6cd02401f4cd3d055e81f2b6983ddfeeb60ffe6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xlsx-populate/-/xlsx-populate-1.21.0.tgz","fileCount":51,"integrity":"sha512-8v2Gm8BehXo6LU7KT802QoXTPkYY1SKk5V8g/UuYZnNB3JzXqud/P99Pxr2yXeKyt+sKlCatmidz6jQNie1hRw==","signatures":[{"sig":"MEUCIQDnBasVopk5DYQoMYx24dN/fzOvf0MRmXW45sH3BhvvdAIgaqyjR7nukMoJuVMfkUXKZWuHQNlQ2B4alJbaMCLxjRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15112553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXBzgCRA9TVsSAnZWagAAyJAP/1HZl558ZrhR1r2bVTJX\nHexQTWkYcnYAs2OBM+eBZcQxm5dA8QvPvkyiGHF4AiivBzsA/iCXVldkqGvE\nBY9YalprZwtO81Fx3n233SOTIaCjodTHataIXfWEi2j4xWHqRuNKOd4XmrbX\nawgkMf8XoxKOokGMFUzsmolsN+6+xYNsJK7jY3JeNlV8VJgoelieV3xyuwKP\nBkoR1fM20WGIwwi/jMx+w+UzvO14vZKqCmlwaKlgkOSI5lkEm/4t3YJtLAsf\nZzPohKE5giO7Cwjcy+uqnckZ+3ofmcXYg34lyCq6AAXCfOAghlqK2G98xrnN\ntpzyNKU0LU7WvZGiRcZGKxAueQLxHrjwzduH9kOxjFRY/jESNoAqV7V7eBxd\ncQwnr1G1KvgRYD0NuK/m8KJLmdsagSMzc8IUG3OU3oDRQstA1PDyUQeZB7jx\nUqSqRy9jKTOuOcMlJ02ESVwvW/0SDNBPc5A7K+pR+6q02LHPwTeCwmbYpPgO\njacOS0b+zGz6ih/bJBo5nNJpxkbFNojM9ssCbi20/BMu7xIUyWzqgkOxuPNJ\nHO8m9SlZ5dncsSPSDB0hLxmhPp4Ytj0+uoNesemcgwAOrY7yjhuksBevE++R\na7Wmylw1j0NCDsJuCZ2zVp4/yXZqt7xO81vUU1L1NrQdUQ1x8fivoOk+Lsm4\n7Dhs\r\n=ZG1O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/XlsxPopulate.js","browser":{"XlsxPopulate":"./browser/xlsx-populate.js"},"gitHead":"7480a02575c9140c0e7995623ea192c88c1886d3","scripts":{"docs":"gulp docs","test":"jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json","e2e-parse":"jasmine JASMINE_CONFIG_PATH=test/e2e-parse/jasmine.json","e2e-generate":"jasmine JASMINE_CONFIG_PATH=test/e2e-generate/jasmine.json","test:windows":"npm-run-all test e2e-parse e2e-generate"},"_npmUser":{"name":"anonymous","email":"dave@dtjohnson.net"},"repository":{"url":"git+https://github.com/dtjohnson/xlsx-populate.git","type":"git"},"_npmVersion":"6.13.4","description":"Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, and a focus on keeping existing workbook features and styles in tact.","directories":{},"_nodeVersion":"12.16.1","dependencies":{"cfb":"^1.1.3","sax":"^1.2.4","jszip":"^3.2.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"glob":"^7.1.6","gulp":"^4.0.2","karma":"^4.4.1","edge-js":"^13.0.1","jasmine":"^3.5.0","babelify":"^10.0.0","watchify":"^3.11.1","uglify-js":"^3.8.0","browserify":"^16.5.0","proxyquire":"^2.1.3","@babel/core":"^7.8.6","gulp-eslint":"^6.0.0","gulp-rename":"^2.0.0","gulp-uglify":"^3.0.2","npm-run-all":"^4.1.5","markdown-toc":"^1.2.0","vinyl-buffer":"^1.0.1","jsondiffpatch":"^0.4.1","karma-jasmine":"^3.1.1","proxyquireify":"^3.2.1","replacestream":"^4.0.3","gulp-sourcemaps":"^2.6.5","karma-browserify":"^7.0.0","markdown-include":"^0.4.3","@babel/preset-env":"^7.8.6","jsdoc-to-markdown":"^5.0.3","karma-ie-launcher":"^1.0.0","vinyl-source-stream":"^2.0.0","proxyquire-universal":"^2.1.0","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/xlsx-populate_1.21.0_1583095007099_0.9950179046552674","host":"s3://npm-registry-packages"}}},"name":"xlsx-populate","time":{"created":"2015-03-01T20:31:23.711Z","modified":"2025-09-09T02:18:26.607Z","0.0.1":"2015-03-01T20:31:23.711Z","0.0.2":"2015-03-02T01:13:47.168Z","0.0.3":"2015-03-03T21:26:50.003Z","0.0.4":"2015-05-16T12:28:13.466Z","0.0.5":"2016-04-02T00:35:33.086Z","0.1.0":"2016-04-05T01:16:32.100Z","0.1.1":"2016-04-05T11:37:25.545Z","0.1.2":"2016-04-05T11:41:54.005Z","0.2.0":"2016-04-21T01:25:11.960Z","0.3.0":"2016-06-25T13:17:02.067Z","0.4.0":"2016-10-21T21:34:05.208Z","1.0.0":"2017-02-26T15:57:25.827Z","1.1.0":"2017-03-04T01:27:35.915Z","1.2.0":"2017-03-10T02:29:34.239Z","1.2.1":"2017-03-10T12:24:49.866Z","1.3.0":"2017-03-11T16:03:11.375Z","1.4.0":"2017-03-11T18:34:43.735Z","1.4.1":"2017-03-12T14:06:36.656Z","1.4.2":"2017-03-12T19:50:59.446Z","1.5.0":"2017-03-25T18:08:13.318Z","1.5.1":"2017-03-27T18:32:40.344Z","1.5.2":"2017-03-28T11:29:18.420Z","1.5.3":"2017-03-29T01:03:01.563Z","1.5.4":"2017-04-01T01:39:42.092Z","1.5.5":"2017-04-12T11:35:15.489Z","1.6.0":"2017-04-22T14:53:17.497Z","1.6.1":"2017-04-30T21:54:53.456Z","1.7.0":"2017-05-24T01:32:27.762Z","1.8.0":"2017-06-18T01:34:05.787Z","1.8.1":"2017-06-27T13:03:16.093Z","1.8.2":"2017-07-07T00:24:33.201Z","1.9.0":"2017-08-05T11:56:03.796Z","1.10.0":"2017-08-05T12:12:38.161Z","1.11.0":"2017-09-07T01:26:08.468Z","1.12.0":"2018-01-28T18:11:24.057Z","1.13.0":"2018-01-30T02:24:17.113Z","1.14.0":"2018-02-12T02:32:14.981Z","1.14.1":"2018-04-29T20:58:58.466Z","1.15.0":"2018-05-09T11:56:20.477Z","1.16.0":"2018-05-09T14:09:51.333Z","1.17.0":"2018-05-27T00:05:37.350Z","1.17.1":"2019-01-08T03:01:00.008Z","1.18.0":"2019-01-14T19:43:40.073Z","1.19.0":"2019-01-15T15:09:39.646Z","1.19.1":"2019-02-13T01:18:14.962Z","1.20.0":"2019-07-21T18:06:34.671Z","1.20.1":"2019-08-03T17:02:48.925Z","1.21.0":"2020-03-01T20:36:47.441Z"},"contributors":[{"name":"Eddie Corrigall","email":"eddiecorrigall@gmail.com"},{"name":"Alan Doyle","email":"alandoyle95@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/dtjohnson/xlsx-populate#readme"}