{"maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"keywords":["pdf","table","jspdf"],"dist-tags":{"next":"3.0.0-alpha.1","alpha":"3.0.0-alpha.5","latest":"5.0.7"},"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"description":"Generate pdf tables with javascript (jsPDF plugin)","readme":"# jsPDF-AutoTable - Table plugin for jsPDF\n\n**Generate PDF tables with Javascript**\n\nThis jsPDF plugin adds the ability to generate PDF tables either by parsing HTML tables or by using Javascript data directly. Check out the [demo](https://simonbengtsson.github.io/jsPDF-AutoTable/) or [examples](https://github.com/simonbengtsson/jsPDF-AutoTable/tree/master/examples).\n\n![sample javascript table pdf](samples.png)\n\n## Installation\n\nGet jsPDF and this plugin by doing one of these things:\n\n- `npm install jspdf jspdf-autotable`\n- Download [jspdf](https://raw.githubusercontent.com/MrRio/jsPDF/master/dist/jspdf.umd.min.js) and [jspdf-autotable](https://raw.githubusercontent.com/simonbengtsson/jsPDF-AutoTable/master/dist/jspdf.plugin.autotable.js) from github\n- Use a CDN, for example: [https://unpkg.com/jspdf](https://unpkg.com/jspdf) and [https://unpkg.com/jspdf-autotable](https://unpkg.com/jspdf-autotable)\n\n## Usage\n\n```js\nimport { jsPDF } from 'jspdf'\nimport { autoTable } from 'jspdf-autotable'\n\nconst doc = new jsPDF()\n\n// It can parse html:\n// <table id=\"my-table\"><!-- ... --></table>\nautoTable(doc, { html: '#my-table' })\n\n// Or use javascript directly:\nautoTable(doc, {\n  head: [['Name', 'Email', 'Country']],\n  body: [\n    ['David', 'david@example.com', 'Sweden'],\n    ['Castille', 'castille@example.com', 'Spain'],\n    // ...\n  ],\n})\n\ndoc.save('table.pdf')\n```\n\nYou can also use the plugin methods directly on the jsPDF documents:\n\n```js\nimport { jsPDF } from 'jspdf'\nimport { applyPlugin } from 'jspdf-autotable'\n\napplyPlugin(jsPDF)\n\nconst doc = new jsPDF()\ndoc.autoTable({ html: '#my-table' })\ndoc.save('table.pdf')\n```\n\nThe third usage option is with downloaded or CDN dist files\n\n```html\n<script src=\"jspdf.min.js\"></script>\n<script src=\"jspdf.plugin.autotable.min.js\"></script>\n<script>\n  const doc = new jsPDF()\n  doc.autoTable({ html: '#my-table' })\n  doc.save('table.pdf')\n</script>\n```\n\nCheckout more examples in [examples.js](examples) which is also the source code for the [demo](https://simonbengtsson.github.io/jsPDF-AutoTable/) documents.\n\n## Options\n\nBelow is a list of all options supported in the plugin. All of them are used in the [examples](examples).\n\n#### Content options\n\nThe only thing required is either the html or body option. If you want more control over the columns you can specify the columns property. If columns are not set they will be automatically computed based on the content of the html content or head, body and foot.\n\n- `html: string|HTMLTableElement` A css selector (for example \"#table\") or an html table element.\n- `head: CellDef[][]` For example [['ID', 'Name', 'Country']]\n- `body: CellDef[][]` For example [['1', 'Simon', 'Sweden'], ['2', 'Karl', 'Norway']]\n- `foot: CellDef[][]` For example [['ID', 'Name', 'Country']]\n- `columns: ColumnDef[]` For example [{header: 'ID', dataKey: 'id'}, {header: 'Name', dataKey: 'name'}]. Only use this option if you want more control over the columns. If not specified the columns will be automatically generated based on the content in html or head/body/foot\n- `includeHiddenHtml: boolean = false` If hidden html with `display: none` should be included or not when the content comes from an html table\n\n`CellDef: string|{content: string, rowSpan: number, colSpan: number, styles: StyleDef}`\nNote that cell styles can also be set dynamically with hooks.\n\n`ColumnDef: string|{header?: string, dataKey: string}`\nThe header property is optional and the values of any content in `head` will be used if not set. Normally it's easier to use the html or head/body/foot style of initiating a table, but columns can be useful if your body content comes directly from an api or if you would like to specify a dataKey on each column to make it more readable to style specific columns in the hooks or columnStyles.\n\nUsage with colspan, rowspan and inline cell styles:\n\n```js\nautoTable(doc, {\n  body: [\n    [{ content: 'Text', colSpan: 2, rowSpan: 2, styles: { halign: 'center' } }],\n  ],\n})\n```\n\n#### Styling options\n\n- `theme: 'striped'|'grid'|'plain' = 'striped'`\n- `styles: StyleDef`\n- `headStyles: StyleDef`\n- `bodyStyles: StyleDef`\n- `footStyles: StyleDef`\n- `alternateRowStyles: StyleDef`\n- `columnStyles: {&columnDataKey: StyleDef}` Note that the columnDataKey is normally the index of the column, but could also be the `dataKey` of a column if content initialized with the columns property\n\n`StyleDef`:\n\n- `font: 'helvetica'|'times'|'courier' = 'helvetica'`\n- `fontStyle: 'normal'|'bold'|'italic'|'bolditalic' = 'normal'`\n- `overflow: 'linebreak'|'ellipsize'|'visible'|'hidden' = 'linebreak'`\n- `fillColor: Color? = null`\n- `textColor: Color? = 20`\n- `cellWidth: 'auto'|'wrap'|number = 'auto'`\n- `minCellWidth: number? = 10`\n- `minCellHeight: number = 0`\n- `halign: 'left'|'center'|'right' = 'left'`\n- `valign: 'top'|'middle'|'bottom' = 'top'`\n- `fontSize: number = 10`\n- `cellPadding: Padding = 10`\n- `lineColor: Color = 10`\n- `lineWidth: border = 0` // If 0, no border is drawn\n\n`Color`:\nEither false for transparent, hex string, gray level 0-255 or rbg array e.g. [255, 0, 0]\nfalse|string|number|[number, number, number]\n\n`Padding`:\nEither a number or object `{top: number, right: number, bottom: number, left: number}`\n\n`border`:\nEither a number or object `{top: number, right: number, bottom: number, left: number}`\n\nStyles work similar to css and can be overridden by more specific styles. Overriding order:\n\n1. Theme styles\n2. `styles`\n3. `headStyles`, `bodyStyles` and `footStyles`\n4. `alternateRowStyles`\n5. `columnStyles`\n\nStyles for specific cells can also be applied using either the hooks (see hooks section above) or the `styles` property on the cell definition object (see content section above).\n\nExample usage of column styles (note that the 0 in the columnStyles below should be dataKey if columns option used)\n\n```js\n// Example usage with columnStyles,\nautoTable(doc, {\n  styles: { fillColor: [255, 0, 0] },\n  columnStyles: { 0: { halign: 'center', fillColor: [0, 255, 0] } }, // Cells in first column centered and green\n  margin: { top: 10 },\n  body: [\n    ['Sweden', 'Japan', 'Canada'],\n    ['Norway', 'China', 'USA'],\n    ['Denmark', 'China', 'Mexico'],\n  ],\n})\n\n// Example usage of columns property. Note that America will not be included even though it exist in the body since there is no column specified for it.\nautoTable(doc, {\n  columnStyles: { europe: { halign: 'center' } }, // European countries centered\n  body: [\n    { europe: 'Sweden', america: 'Canada', asia: 'China' },\n    { europe: 'Norway', america: 'Mexico', asia: 'Japan' },\n  ],\n  columns: [\n    { header: 'Europe', dataKey: 'europe' },\n    { header: 'Asia', dataKey: 'asia' },\n  ],\n})\n```\n\n#### Other options\n\n- `useCss: boolean = false`\n- `startY: number = null` Where the table should start to be printed (basically a margin top value only for the first page)\n- `margin: Margin = 40`\n- `pageBreak: 'auto'|'avoid'|'always'` If set to `avoid` the plugin will only split a table onto multiple pages if table height is larger than page height.\n- `rowPageBreak: 'auto'|'avoid' = 'auto'` If set to `avoid` the plugin will only split a row onto multiple pages if row height is larger than page height.\n- `tableWidth: 'auto'|'wrap'|number = 'auto'`\n- `showHead: 'everyPage'|'firstPage'|'never' = 'everyPage''`\n- `showFoot: 'everyPage'|'lastPage'|'never' = 'everyPage''`\n- `tableLineWidth: number = 0`\n- `tableLineColor: Color = 200` The table line/border color\n- `horizontalPageBreak: boolean = false` To split/break the table into multiple pages if the given table width exceeds the page width\n- `horizontalPageBreakRepeat: string|number|string[]|number[]` To repeat the given column in the split pages, works when `horizontalPageBreak = true`. The accepted values are column dataKeys, such as `'id'`, `recordId` or column indexes, such as `0`, `1` or array for multiple columns.\n- `horizontalPageBreakBehaviour: 'immediately'|'afterAllRows' = 'afterAllRows'` How the horizontal page breaks behave, works when `horizontalPageBreak = true`\n\n`Margin`:\nEither a number or object `{top: number, right: number, bottom: number, left: number}`\n\n### Hooks\n\nYou can customize the content and styling of the table by using the hooks. See the custom styles example for usage of the hooks.\n\n- `didParseCell: (HookData) => {}` - Called when the plugin finished parsing cell content. Can be used to override content or styles for a specific cell.\n- `willDrawCell: (HookData) => {}` - Called before a cell or row is drawn. Can be used to call native jspdf styling functions such as `doc.setTextColor` or change position of text etc before it is drawn.\n- `didDrawCell: (HookData) => {}` - Called after a cell has been added to the page. Can be used to draw additional cell content such as images with `doc.addImage`, additional text with `doc.addText` or other jspdf shapes.\n- `willDrawPage: (HookData) => {}` - Called before starting to draw on a page. Can be used to add headers or any other content that you want on each page there is an autotable.\n- `didDrawPage: (HookData) => {}` - Called after the plugin has finished drawing everything on a page. Can be used to add footers with page numbers or any other content that you want on each page there is an autotable.\n\nAll hooks functions get passed an HookData object with information about the state of the table and cell. For example the position on the page, which page it is on etc.\n\n`HookData`:\n\n- `table: Table`\n- `pageNumber: number` The page number specific to this table\n- `settings: object` Parsed user supplied options\n- `doc` The jsPDF document instance of this table\n- `cursor: { x: number, y: number }` To draw each table this plugin keeps a cursor state where the next cell/row should be drawn. You can assign new values to this cursor to dynamically change how the cells and rows are drawn.\n\nFor cell hooks these properties are also passed:\n\n- `cell: Cell`\n- `row: Row`\n- `column: Column`\n- `section: 'head'|'body'|'foot'`\n\nTo see what is included in the `Table`, `Row`, `Column` and `Cell` types, either log them to the console or take a look at `src/models.ts`\n\n```js\n// Example with an image drawn in each cell in the first column\nautoTable(doc, {\n  didDrawCell: (data) => {\n    if (data.section === 'body' && data.column.index === 0) {\n      const base64Img = 'data:image/jpeg;base64,iVBORw0KGgoAAAANS...'\n      doc.addImage(base64Img, 'JPEG', data.cell.x + 2, data.cell.y + 2, 10, 10)\n    }\n  },\n})\n```\n\n## API\n\n- `doc.autoTable({ /* options */ })`\n- `autoTable(doc, { /* options */ })`\n- `jsPDF.autoTableSetDefaults({ /* ... */ })` Use for setting global defaults which will be applied for all tables\n- `applyPlugin(jsPDF)` Use for adding the autoTable api to any jsPDF instance\n\nIf you want to know something about the last table that was drawn you can use `doc.lastAutoTable`. It has a `doc.lastAutoTable.finalY` property among other things that has the value of the last printed y coordinate on a page. This can be used to draw text, multiple tables or other content after a table.\n\n## Contributions\n\nContributions are always welcome, especially on open issues. If you have something major you want to add or change, please post an issue about it first to discuss it further. Describe the change you are making and ideally link to related issues. If the pull request is a bug fix it is helpful with examples of what did not work before but works now etc.\n\nThe workflow for contributing would be something like this:\n\n- Start watcher with `npm start`\n- Make code changes\n- Make sure all examples works\n- Commit and submit pull request\n\nDon't include updated build files in the pull request since these are auto created during release.\n\n**If you don't use [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) on autosave, please run `yarn run format-all` before opening your PR**\n\n### Release workflow\n\n- Run Release workflow on github (or run `npm version <semver>` and npm run deploy)\n- Verify release at https://simonbengtsson.github.io/jsPDF-AutoTable\n\n### Pull requests locally\n\n- `PR=472 npm run checkout-pr`\n\n### Release prerelease\n\n- `npm version prerelease`\n- `git push && git push --tags && npm publish --tag alpha`\n","repository":{"type":"git","url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git"},"users":{"dwqs":true,"gwokae":true,"ericfong":true,"superchenney":true,"simonbengtsson":true,"hyokosdeveloper":true,"rahulraghavankklm":true},"bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"license":"MIT","versions":{"2.0.0":{"name":"jspdf-autotable","version":"2.0.0","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simonbengt@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"777abb02ab00e11d4f005a5730816d78ce4f7a30","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.0.tgz","integrity":"sha512-3ucktcWGChNyJ7mMlJ7ExFJGNPNe+zR/DaCSgLBefynrDAKRYcAFLceit9ouPjJHdwtzazTvrI0W44S+tfHYtA==","signatures":[{"sig":"MEUCIAz/3A1c5Ye2Jnl8H/2yQWKcgvBY4JK1PtfehTs0TIGfAiEAiycp8M1hjuLunTTnTGs2zDdhH5Kt+ex1Jf+lwuzZb0A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"777abb02ab00e11d4f005a5730816d78ce4f7a30","gitHead":"dbee440108e3403ccdbf33b33fea904fcf14b30d","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.13.4","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"0.12.4","dependencies":{},"devDependencies":{}},"2.0.3":{"name":"jspdf-autotable","version":"2.0.3","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"8899ac1e669cdc926b6ccb2d84ddabbaed25a501","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.3.tgz","integrity":"sha512-GZcxt3DyFWNEaabgGfis2ILLDwWweIi0goM2mV4btQfFGAFAXhv0S76Pw96/XKxv59uMil5KvEY662d/Y0oO8w==","signatures":[{"sig":"MEYCIQCnpPkoy5l2blkhLP2onK04/4MsruHMDJjDMlkAFNI7DAIhAOLUxhrj390JP3ItXelJIlsIucAYjgy6mzEXNdpVq4CS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"8899ac1e669cdc926b6ccb2d84ddabbaed25a501","gitHead":"7848a6942a88c2394a5860fa46b3a356a3da3f8a","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.13.4","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"0.12.4","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.4":{"name":"jspdf-autotable","version":"2.0.4","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"13a66e81658222aa2f6130a3af8b0e1a010f1b87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.4.tgz","integrity":"sha512-2EnFnpZWDCJWCFZhSlG44WzL1xP2zOZyw5ukgMdnX6idk143e3F+aJC8pJkonhPLqlRBjNvaN1vQrPnx/x5GQA==","signatures":[{"sig":"MEUCIFACt07JtvnSoDZpdwTxMxXiV84PLdivIv83akhqmyvLAiEA6uqUi+ZBWkcWgWec5FQgyDWsMTmJ8oIQ5aw+h/G7J0Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"13a66e81658222aa2f6130a3af8b0e1a010f1b87","gitHead":"237761d30b775cbfdc1a8c0fa4a2f10f3306964a","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish","hosted":"git checkout gh-pages && bower update && git add -A && git commit -m \"Updated to latest version\" && git push","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.14.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.5":{"name":"jspdf-autotable","version":"2.0.5","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"0a328ca5667dc2129f90781e784cda6c143dc022","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.5.tgz","integrity":"sha512-O2cicyS5mGJQ0/Jv9KCil+ouaELjo3zROV8RDe+xc3UxufaZthde1iIKQR5Fy5q75J3+6b8wWV5YHEPmSM/9Hg==","signatures":[{"sig":"MEUCIFw5Q1UIODhYIl54EAxRxZr9YotIuzdtUHKzmRLZyQ9UAiEAwfjcVuZ5dBZSSN/YuFdU8CrZWIj3Wh8VCuXRjyFvC5A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"0a328ca5667dc2129f90781e784cda6c143dc022","gitHead":"c91141e8d000ca412527a1c35c305e3f52f5c57e","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.14.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.6":{"name":"jspdf-autotable","version":"2.0.6","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.6","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"7d419562093e48600362c06eba4639dde8661c2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.6.tgz","integrity":"sha512-VxFu1wy8qbB5bM9rlVaU+VH/rf4s7wHSJmAlBJWd2ylrtRyqWRI7oR8wMyeBI5wBtEzz+drosrNq9CVVvncwwQ==","signatures":[{"sig":"MEUCIHe0jLyEMzSbA3GvuMkvih5+ZmvBjkbaCKfLdIR2M9gFAiEApnVEpVlMLu/VuJT1Pj9rQioGFp8BCLMo9bImd9+TC5I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"7d419562093e48600362c06eba4639dde8661c2c","gitHead":"83e4f7e796ffbd9c315c855151fddf9dccc05afe","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.14.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.7":{"name":"jspdf-autotable","version":"2.0.7","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.7","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"d3e583645b671608a3712b6e38a15746ba19b51e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.7.tgz","integrity":"sha512-66G7ySvjJ4sQTacxKEad1XcP7YDGN31j1iVQjyhR9cYY2hlHZE29W4Tyy9yPi/2Zv0EUi4ecBRcNOPYjDQJPSA==","signatures":[{"sig":"MEYCIQDvBOZnd+M3TPPTZERnnA3dCmbblqP7jFOZvgpNM9tCNAIhAIoWWPi93439RTX12DICvb3+QFXPzuMMOgP6PJGVZaRw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"d3e583645b671608a3712b6e38a15746ba19b51e","gitHead":"2c7b18a153d856a196f40cc9df745a79549b0133","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && git clean -f -d && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.14.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.8":{"name":"jspdf-autotable","version":"2.0.8","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.8","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/someatoms/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/someatoms/jsPDF-AutoTable/issues"},"dist":{"shasum":"1d8e2c44605aedbce89dd500f18fd79335b79e12","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.8.tgz","integrity":"sha512-jrmIWDWFz1zqNoCrTeD+YxrrVuZ10VKknN1TYJz1eaDdHMPtCPAt6tVuNJZNIJYGqMLVj10lSGErA9756UumSA==","signatures":[{"sig":"MEYCIQDiXi72j/P5x2PQs6BRmZP/L0sDfCO/g5JKcBFvg8EiHAIhAOGMdWy++/aPuNB/rQsQOsk334xAeRa5aCCFtgmJn6n8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"1d8e2c44605aedbce89dd500f18fd79335b79e12","gitHead":"11e88435d7dbb2fe5a960328cb277c079c8eab0b","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && git clean -f -d && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/someatoms/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"2.14.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.9":{"name":"jspdf-autotable","version":"2.0.9","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.9","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"efe512af05e3fe38e57197780afaeca89f817112","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.9.tgz","integrity":"sha512-34Dgcgfhv9B3fj1M6i1Y6yYVm5XHtI1M7liNRsv9GPwy4VFs2kfy/PkvmsRdPQbUSiU8rEIe69VrFjtKsr9Owg==","signatures":[{"sig":"MEYCIQDuTtrnxt6c7jGyyhsYihJBwA4UGorRV5ZzD2hIep7d9wIhAKMPIgXk8zRvloVBIk/IEuB18PnYzyWU28lKDQENsc6Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"efe512af05e3fe38e57197780afaeca89f817112","gitHead":"0c163bafb53fd77397d959726a2c4ee4b728c8c3","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.12":{"name":"jspdf-autotable","version":"2.0.12","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.12","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"7feb5f4fab030ed1ce8423a6a4d28b6db78bc249","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.12.tgz","integrity":"sha512-sKg7KsyX+VEAh33K7Q5C6jJEyvlEN2ohy0ANt79Dq9ZozaYBw6vnJAsEkmHCMFD7TeOdRFn6AnxJn/P/XFwUAg==","signatures":[{"sig":"MEQCIGNfUQ4vsqH0+qhSrSfJnXNvhDLjCl+PBDJAlDFbKO1LAiA01v0BmF55rukf/e7Csqz2xixsaKQOKNIsTo9IVOOmFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"7feb5f4fab030ed1ce8423a6a4d28b6db78bc249","gitHead":"66af03b2c57dfd147cdfe17b0cf27b33123d3650","scripts":{"build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.13":{"name":"jspdf-autotable","version":"2.0.13","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.13","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2bf8a41516c86d114989cb85a19c353ad82b4138","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.13.tgz","integrity":"sha512-0gm+dB+1MdICSQvPE8+ejTW/4RveZVBk7B0kawM0OpzpZ/UwyTsXUkaNBfegg0COIzwecTI6xFMiiZFVn8MHyw==","signatures":[{"sig":"MEQCIAk0rF1DyEx8ukqK6ztSh2EZI4E4nKWdezoiol9xfTekAiA0m6zka9UcjYndepABlrodIhMU3RpNMrg8RuGIAP359g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"2bf8a41516c86d114989cb85a19c353ad82b4138","gitHead":"794e9744789331c606d23bb417f70053477778fe","scripts":{"test":"echo 'To test, manually open the examples.html and check that all examples looks good.'","build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.14":{"name":"jspdf-autotable","version":"2.0.14","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.14","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"6bf078c0423c137816ece291077bb53440bf662c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.14.tgz","integrity":"sha512-dBgJ7lvJqEpE9ckhqxTjs8bDwZfq5C0pZisfLmod+f1q2j6Z0XGcE0lDUkSjQ+zlo80niBUbkK8yKD+9JJLw8g==","signatures":[{"sig":"MEQCIDSyQyeLsoyldwn9leghssDGUL7M3vato/pAsTJQ9mvDAiBPXTvu/xu9s99Y+TYNAV9QhXrjCPx+G8aPZgZOfYbs3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"6bf078c0423c137816ece291077bb53440bf662c","gitHead":"ec9ef1612e3ae7d28552417ed612d1894ef0e4ce","scripts":{"test":"echo 'To test, manually open the examples.html and check that all examples looks good.'","build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.15":{"name":"jspdf-autotable","version":"2.0.15","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.15","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"a953e1ed69a27df424bdf4b38a2a5adccc62d15d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.15.tgz","integrity":"sha512-WnYchB2lUO565bxzjrpPurMPEOBTNeDrTHjzBKuGQTLhU5+44LcOtnXKBfQdJfbFOkKzA5p7uLZJmXuvt0WBxQ==","signatures":[{"sig":"MEQCIE0QHgle8nrwLQwCpBnQ2cFSjcE6WjcDhXVDejqVksHKAiAaERP2fziIhukc8GeHbk/Chhx53EIKYkgaWumgPJmT3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"a953e1ed69a27df424bdf4b38a2a5adccc62d15d","gitHead":"2b164ba02f249f90f53eed20444ac4dbe58e47c4","scripts":{"test":"echo 'To test, manually open the examples.html and check that all examples looks good.'","build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.16":{"name":"jspdf-autotable","version":"2.0.16","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.16","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"8b1435478c32997e96f70cbf6501a046ca800778","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.16.tgz","integrity":"sha512-a57mBEIbYKMSADsw92iT+TPeIYFh8/8/cgX+oXuztB3RrpQTpm+DMBjbi5lSmjfunL0WSQPVYeLZOiAfuijXRg==","signatures":[{"sig":"MEQCIEHnb09mP1EVedtjL1bSN9W20mbeoBEZLAms56AE973eAiA+h8XKZOHrfD+MDN31MIJZRZ34ml2wr2pRgbsvj5BJVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"8b1435478c32997e96f70cbf6501a046ca800778","gitHead":"af3de119f4edb6e7915a350d0dda89120a9806f5","scripts":{"test":"echo 'To test, manually open the examples.html and check that all examples looks good.'","build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.3","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"4.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.17":{"name":"jspdf-autotable","version":"2.0.17","keywords":["pdf","table","jspdf"],"author":{"url":"simonbengtsson.com","name":"Simon Bengtsson","email":"simongbe@gmail.com"},"license":"MIT","_id":"jspdf-autotable@2.0.17","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://github.com/simonbengtsson/jsPDF-AutoTable#readme","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"bac3d114ae12d44e0d7975634d1399f866716c77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.17.tgz","integrity":"sha512-uH9iGS+ndU6UimWxjNcDIbGlS0GG/4yTF+SbsSFof40j4Pt30i86/+4dhhlKHiunLtTH2J9dCXnFcmJ+vHF5qA==","signatures":[{"sig":"MEUCIFrHbmN/wn1FQLSbsF+bkxdyqE/1USzZJuzDEabVCD+fAiEAjPROEtDOtI5EJ8is67qPr18YQ4ieaUNYk0tmoeYz7c0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"bac3d114ae12d44e0d7975634d1399f866716c77","gitHead":"ae77bd3193f72d4730ec3cb220b9e4884d2f775b","scripts":{"test":"echo 'To test, manually open the examples.html and check that all examples looks good.'","build":"babel src/main.js | uglifyjs -o dist/jspdf.plugin.autotable.js --comments && babel src/main.js > dist/jspdf.plugin.autotable.src.js && node build updateVersion","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.3.12","description":"Generate PDF tables with jsPDF","directories":{"example":"examples"},"_nodeVersion":"5.1.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"babel":"^5.8.23","uglify-js":"^2.4.24"}},"2.0.18":{"name":"jspdf-autotable","version":"2.0.18","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.18","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"ed10f1cd6bf0ffda2f9057395cf0c370f3e7b18a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.18.tgz","integrity":"sha512-56Ml5d2Visy1r13dthi+z2TDW12eGOcdvriniKLAdBo8kb8CnMfTwu7VNM8El2E1UQaIHMXrF62RfnFX5Gl7tg==","signatures":[{"sig":"MEUCIQChNElvTnV91GzXdvYHEiGeLYp7e49Tp6o/WZeF2ccktwIgWkW2UB+7o9Th8JJbtb0hnpqLh8z0uY289WnyMIJVUBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"ed10f1cd6bf0ffda2f9057395cf0c370f3e7b18a","gitHead":"129c2151797991be9ece795a7eba4df83dffd038","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.18.tgz_1455127618802_0.960687045706436","host":"packages-5-east.internal.npmjs.com"}},"2.0.19":{"name":"jspdf-autotable","version":"2.0.19","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.19","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"37edddf0bc06a4fe623c12c0d3038b72b59f35fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.19.tgz","integrity":"sha512-d8tx4g0i8PEURMocPgquvALrtlVYuqd1B37E2KfvCDU8aCPLLq2w1NXlLrX8/XmnW0xIYfrv2vKYMnxaRYkyWQ==","signatures":[{"sig":"MEUCIQD5gE5hdBnECher4oNcspVbl+LgZdNq4y6bbXILK0WVNQIgI2sCh9BU836LAli37lZ1na0KwJRiS3xZ/1wAuBWmXPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"37edddf0bc06a4fe623c12c0d3038b72b59f35fa","gitHead":"c419aabe002d668277d6a78eea2f5fba49c1ef12","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.19.tgz_1455127860471_0.8112809788435698","host":"packages-5-east.internal.npmjs.com"}},"2.0.20":{"name":"jspdf-autotable","version":"2.0.20","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.20","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"f24f5c3279f3d29e5e66d50ad0640a6e4bb31089","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.20.tgz","integrity":"sha512-xU8V3h/jWLCJjRObUnEeL0xD4zaO91aIsLDLFUTAg72fyrv39LgzuEOs8VLXBwO4iRZlaxjxUSw1amd+j06P4w==","signatures":[{"sig":"MEUCIGmHK6oIgUij/hzwDonaYPEhMREm/Pxzi7bYWMjN3xIpAiEAoISph4onwDcdfk2KkSCrcjDhqS/rT4T63XtHt3oH97E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"f24f5c3279f3d29e5e66d50ad0640a6e4bb31089","gitHead":"cf8b705cabe46fed3b9d4b545662734a54d50eea","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"^1.0.272"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.20.tgz_1456840244913_0.7242920550052077","host":"packages-6-west.internal.npmjs.com"}},"2.0.21":{"name":"jspdf-autotable","version":"2.0.21","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.21","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"70d2441cd4e1489fe4d4d0db177a9978b04b964b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.21.tgz","integrity":"sha512-0V2Dr+B5ka0lJ4+Ek/rMYaIAD2LVIPV6FsZLpp/7yBi3wR7Fp6YftIvRgdM77IC3jsCQe8JDA+qkEglYsyboJA==","signatures":[{"sig":"MEUCIQDdgTlk0ieDMQRhpjLhf7tujP+8wq+6ANcHs55Ypcj8CgIgVwod9hot+N6xSalexZYgVxUx/NLDwj9dQsLvP+RVMUY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"70d2441cd4e1489fe4d4d0db177a9978b04b964b","gitHead":"1926ef2baf92b045d8b2e222b13cf2d65761cb75","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"^1.2.61"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.21.tgz_1456856379738_0.8283199016004801","host":"packages-12-west.internal.npmjs.com"}},"2.0.22":{"name":"jspdf-autotable","version":"2.0.22","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.22","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0c05778bb73a9e620796c2edad0caf6784b6b00e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.22.tgz","integrity":"sha512-sK3Y8nUhjrW+zRnJh6fu+6T4xOiXj9URLmWgInKlJGlDqDUqgRaEHW18pokR7qH3CVMTmznT5ejsZ3AIeBOapQ==","signatures":[{"sig":"MEUCIQDpQk39BqqI9o3Ef8ODcGjMz2BHS4GEk+jhqIgD8lGwyAIgS1DT1gK1Su5H+bWdlS4QZ3AMfuF/cWTbOZ960hCDR0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"0c05778bb73a9e620796c2edad0caf6784b6b00e","gitHead":"4762214d789d7d7d8b85b357649f3883a01fa0be","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"^1.2.61"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.22.tgz_1457955985969_0.852782387053594","host":"packages-13-west.internal.npmjs.com"}},"2.0.23":{"name":"jspdf-autotable","version":"2.0.23","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.23","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"16a93c3b32b0660ea4ff49c20f2c89c2b9f084e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.23.tgz","integrity":"sha512-7vbiDLZnqAx8WjQbfqtPEV6438x0uKl2Hbqoog20g6V0jRvcz2rUrf1g9L5kzOHIRxFi3Wct1WeStM0i/zXQ3A==","signatures":[{"sig":"MEUCIHtU2QtP3F1tuHBm/brl+/Cso0tCgrZgB/HtXSmGyOpBAiEA6zU0hULg6qYbppj36tA5mNiOSqkV9zbk+h2mGgQBxLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"16a93c3b32b0660ea4ff49c20f2c89c2b9f084e3","gitHead":"7a03f9f3563a595b525bf1fe12f7d83c74986138","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"<1.3"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.23.tgz_1458169187727_0.19801965192891657","host":"packages-12-west.internal.npmjs.com"}},"2.0.24":{"name":"jspdf-autotable","version":"2.0.24","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.24","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"c9d46f8b91c604b5575d186cd9a15cc6dd96b90a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.24.tgz","integrity":"sha512-5NvWSAvIDKM+SCHPlnYxVZmSDdTdSbeuYwErcBsvrGzTbEuKHUjBhxTAXuxA1bueUTQpepoNC4onUihtUpUc8g==","signatures":[{"sig":"MEYCIQDva7vmT+JTkvsJrfN+0Vt+57mlAOlmtp0JTZOfq8gJTQIhAMHgvO2sIEe/BDcHRSE9lc787TJfymuxiRpY9BOC74nC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"c9d46f8b91c604b5575d186cd9a15cc6dd96b90a","gitHead":"c0be0b2a624c63d7de63db1f392a96a647810451","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"<1.3"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.24.tgz_1458259967544_0.27184631675481796","host":"packages-12-west.internal.npmjs.com"}},"2.0.25":{"name":"jspdf-autotable","version":"2.0.25","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.25","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2da9f3f13d60085dbd657003f4e0cfdcb5be3fdd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.25.tgz","integrity":"sha512-RbmDoMOmjIfIgvxP5mPveQEaon1dAn/Cfd6KBYE3Qyz46KhGHuW0uWqikhO8oQE8DwtPN15ERgNoTTsve7n+uQ==","signatures":[{"sig":"MEUCIQCxq0qrRlJvZjOdUt8JmzSwLKHsPOzCH23P0tqEQarjoAIgA1lA8NStO6Foyf0x21e/Nv+oV368GsR42WKlxSN5wPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"2da9f3f13d60085dbd657003f4e0cfdcb5be3fdd","gitHead":"73b5ff62c715fcd0a2a638ed76fcbdd66610902c","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"<1.3"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.25.tgz_1462372558177_0.9851503930985928","host":"packages-12-west.internal.npmjs.com"}},"2.0.26":{"name":"jspdf-autotable","version":"2.0.26","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.26","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"6bd065fe485921abeea75a3a5762a09c64cdb9e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.26.tgz","integrity":"sha512-lburFVkfyrHIOsMvA2yXjS/Shpx0iArl88qM/F4r5LFAu+LYKVv4QFURz8d6BUs+zFFjQ9jZwwrNPKK+JQU73g==","signatures":[{"sig":"MEUCIBg8YXmNkVXaJi/yxg2DyV1Ho8rkZMzquFbr/ZUSePC+AiEA/3gJ+rXK66ZzrQry70oikS8mkvHFx5VQ6qO4pMk6KEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"6bd065fe485921abeea75a3a5762a09c64cdb9e2","gitHead":"f6dbcc2df9108bad3d7a96df25d9b1f98c8bef9c","scripts":{"build":"node build.js build","start":"nodemon --watch src -e js,ts build.js develop","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.5.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"5.2.0","dependencies":{"jspdf":"<1.3"},"devDependencies":{"rollup":"^0.25.1","nodemon":"^1.8.1","uglify-js":"^2.4.24","rollup-plugin-babel":"^2.3.9","babel-preset-es2015-rollup":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.26.tgz_1462448298994_0.9641028242185712","host":"packages-16-east.internal.npmjs.com"}},"2.0.27":{"name":"jspdf-autotable","version":"2.0.27","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.27","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"268e408f98acbd5d466725880b0ed00c8377a6c2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.27.tgz","integrity":"sha512-962vVzwz02KBvUwR0Z8+mf+ruSamKXcuUF+7NuCKn9ILw7HQvLYO1u04XAVEKWUa3H/R1ytma3MO8YnqTJvx+w==","signatures":[{"sig":"MEUCIQCbVc9850BeSm4xjtFQn/RuXN9VUK9Dj5S78Np9LWf6VwIgRj2IxAgno5PGPXK6iA+e34CiM9jB3u7b86E7kTfNJdg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"268e408f98acbd5d466725880b0ed00c8377a6c2","gitHead":"d3a09150094cbdcbb30e78f6cc36dee5a83fdffb","scripts":{"build":"node build.js build","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364","babel-polyfill":"^6.9.1"},"devDependencies":{"rollup":"^0.34.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.27.tgz_1469024150198_0.9038690568413585","host":"packages-16-east.internal.npmjs.com"}},"2.0.28":{"name":"jspdf-autotable","version":"2.0.28","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.28","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3d8c322b5837662c741f06422ffa4fea9fccac28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.28.tgz","integrity":"sha512-YQBE5B6pv07PhJ5tTHaWA97vlRIrT0vcUdEfmpvrgORFv2rzCIfpnsuWrZ5r/wxBpHJiErOnZdQmXZUtgrCTyQ==","signatures":[{"sig":"MEUCIQD29fNKBN1WJmRyDUnXDRAj6RZtX4xyYAfkzVlVVtcS/gIgXPqYL3KMRtardY53nl89ObUQYrzlkdfZA6v4yiTVmPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"3d8c322b5837662c741f06422ffa4fea9fccac28","gitHead":"dd1036946eb6e5c3d1510e4bfba747a400696019","scripts":{"build":"node build.js build","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364","babel-polyfill":"^6.9.1"},"devDependencies":{"rollup":"^0.34.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.28.tgz_1469028114530_0.21513820765540004","host":"packages-16-east.internal.npmjs.com"}},"2.0.29":{"name":"jspdf-autotable","version":"2.0.29","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.29","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"42a36e3e9f3e960c542ae2056d353386a1cb6f41","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.29.tgz","integrity":"sha512-2jwl1pjVgec1a+Ia2my0usGa7ktlGxYdsSmefwmM9EpK8rZIXbSQvZX8I4614VrpQdrWtd53LtCsShOYhW6kCQ==","signatures":[{"sig":"MEQCICaySBDja1sL0r1RYEJbzlMmHAxBE/x3sJfUm/Dg2PUPAiBssbGQZyKefqdbaYl5PPgN5/ICe/hCQcBUsLHuAx8LfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"42a36e3e9f3e960c542ae2056d353386a1cb6f41","gitHead":"c739f28e3205c7f6474b2c9b56d533d1c6e3bff0","scripts":{"build":"node build.js build","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364","core-js":"^2.4.1","babel-polyfill":"^6.9.1"},"devDependencies":{"rollup":"^0.34.1","nodemon":"^1.10.0","uglify-js":"^2.7.0","core-js-builder":"^2.4.1","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.3.1","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.29.tgz_1469577079279_0.6701165065169334","host":"packages-16-east.internal.npmjs.com"}},"2.0.30":{"name":"jspdf-autotable","version":"2.0.30","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.30","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"03e398ef7c9e09fd44b759157f8dc84cdf2f39d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.30.tgz","integrity":"sha512-m+BCQ4uGEg6cSoTqJUW7h7EX6icwci8YyTGmDhbJh9sUZmypgKOxd1x5uFVHHz4coAKSzMPqF4XWdWvhhcFDuQ==","signatures":[{"sig":"MEUCIQCmoK4WiR/TwxqUFeixM4DQwfzanuLE+MFrBc/NVsvptwIgUEy6BADGx+JRREgP6cSxxcTmV0dTov/HmOQuMiLIoWw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"03e398ef7c9e09fd44b759157f8dc84cdf2f39d2","gitHead":"fbb97ccdf16f53124fac507bbe96454157d0fa9a","scripts":{"build":"node build.js build","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run build && git add -A dist && git add -A examples/libs"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364","babel-polyfill":"^6.9.1"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.30.tgz_1469613070640_0.4679069996345788","host":"packages-12-west.internal.npmjs.com"}},"2.0.31":{"name":"jspdf-autotable","version":"2.0.31","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.31","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"609b8f349b6cb0c8481c798fc7310c6b0823866d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.31.tgz","integrity":"sha512-M5gC6yFexoiKVr0sXTElbUPPEn1cE84QaeFe9OTbr05lELISuSPoqulTzHzVk+BXyVz1GvwoXCEUg5ZvmDJE4w==","signatures":[{"sig":"MEYCIQDMDGKR6OH4UuFxLbmu3FOqsSKy0a2Z4trXNsBlU4ES5gIhAP0VpPBrAuFwYplEbnBx1ezUxObUgjRtYoBFPuG8aflC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"609b8f349b6cb0c8481c798fc7310c6b0823866d","gitHead":"6398e222c2e84afff78861d68664becc471d8a83","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","reset":"git reset dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples/libs","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.31.tgz_1469621930032_0.69799331901595","host":"packages-12-west.internal.npmjs.com"}},"2.0.32":{"name":"jspdf-autotable","version":"2.0.32","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.32","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"daa9d302b62bde566400c5988e9646a2f54a5703","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.32.tgz","integrity":"sha512-yDG4TwgWXdJ38KIKQh4lE77qIrmv0FxqN/J9gN7KqlfiBnzelt2HpOfOi1ktwC0yT4oH2U2Gjmyzj4hZBjnVlw==","signatures":[{"sig":"MEYCIQD5uuhr4ceXFjzapZOo09M2hFugPbTBxEAxWuv0l257igIhAL0tgPu6qrMstOBRb7Ne+2+jYfzijGo24Zhd3LAEkOlX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"daa9d302b62bde566400c5988e9646a2f54a5703","gitHead":"585cbd0090d48337a51217077fdd48ddf0a7b72a","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples/libs","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.8.6","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.0.0","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.32.tgz_1469624745081_0.28337275399826467","host":"packages-16-east.internal.npmjs.com"}},"2.0.33":{"name":"jspdf-autotable","version":"2.0.33","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.33","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"f475858f888a53a62a8f4c9659f693cb32cdd1d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.33.tgz","integrity":"sha512-F42T/vEBpGvKDodvtu+YQEfV9Pk/VKy4gj8dsEzC60OmuIOv+sWcJik0KY0MxWgo4tgiFXzkHOO53uu+LS6DIg==","signatures":[{"sig":"MEYCIQC9nicCZjMKV65kF1TSull/Pf41Ue32zE6djSvqbueSvwIhAIlXdoyVe43VMUj2kak+FTTZ1RDo8mg0OzoIxyk22Isn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"f475858f888a53a62a8f4c9659f693cb32cdd1d4","gitHead":"340edfb778adda915d817073729e21768b0d7115","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.33.tgz_1470057194117_0.8779196278192103","host":"packages-16-east.internal.npmjs.com"}},"2.0.34":{"name":"jspdf-autotable","version":"2.0.34","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.34","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"ec43bd2d46bafb3c068306084cc0ddee0bea7a75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.34.tgz","integrity":"sha512-/aOi4VU5nurJ/jsI+JXJ9t7e1QOAVZWCGrvapu0iN6V/PZrtQkPk/DMUhzU/t4W6ED4gqR1Pr92GBUWuxu3KKw==","signatures":[{"sig":"MEUCIGytgSoBuKD4VGOVYjSiwidncOtWKU4zIvqbcS4fHd9TAiEAli11oj9jBrIfFclZvn6ltBZ5YisrdHhPhdcEvse/Gjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"ec43bd2d46bafb3c068306084cc0ddee0bea7a75","gitHead":"7c70aecf81e8c22608608ab1e5f83f9dea43d0a3","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"github:mrrio/jsPDF#76edb3387cda3d5292e212765134b06150030364"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.34.tgz_1474022474742_0.1344074634835124","host":"packages-16-east.internal.npmjs.com"}},"2.0.35":{"name":"jspdf-autotable","version":"2.0.35","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.35","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"a4f2d6546309040af7a06ddb4085a85a01721603","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.35.tgz","integrity":"sha512-McmK+238U60PNwaVVg2Wna8k2pJAnwmVBE3YDjTxW8qGkf7945qphmuAiO+IweQb+nyfGCW6j32vPqfKt9lYKg==","signatures":[{"sig":"MEUCIQCnbOBdOHbIjhygOmJdn2FfmSU8f8PO3r4BXeInf4jUxgIgRe1+UEXf24a0ukZZw53+Bno2M3ntPtU9qXHQ6hvhQv4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"a4f2d6546309040af7a06ddb4085a85a01721603","gitHead":"392f19ba60c4465a2d555e1fb4c090bb29f04959","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"^1.3.2"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.35.tgz_1475655295113_0.26672592712566257","host":"packages-16-east.internal.npmjs.com"}},"2.0.36":{"name":"jspdf-autotable","version":"2.0.36","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.36","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"1bdbaf058f2b70c2cecda5324ea0f05b6c779d00","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.36.tgz","integrity":"sha512-IeYePxNAqsXkTXIq0532f5Mb4UNjshK7DxvONsDw576gMk0gHGGupDgyGZZZca9ySgqQSekl1gC3pki+erKKow==","signatures":[{"sig":"MEUCIDsMb9sp8uHWdZJhubCH52hCsQZbI1pjtALkDKuO84BjAiEA06UvghA7lUVsYGcI5sA9feSN6cgJiEosZjXjI5Bl3Lc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.umd.js","_from":".","_shasum":"1bdbaf058f2b70c2cecda5324ea0f05b6c779d00","gitHead":"dd335e09e3c3ee4a6b685fe02b34f880bcaba3b8","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js examples/libs/jspdf.plugin.autotable.umd.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"^1.3.2"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.36.tgz_1476893237344_0.07300420175306499","host":"packages-18-east.internal.npmjs.com"}},"2.0.37":{"name":"jspdf-autotable","version":"2.0.37","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.0.37","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"8e11b78661e4ce56e2252994c112e5dce9cb1e17","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.0.37.tgz","integrity":"sha512-hbBadnOOzAjYX0ox+u1AX0PT/felfEjY6CgQ369Q9iwTLUWHCb4sEjKgKqFVZ7ZskKpHyYENNiQ6m/yKalkV4A==","signatures":[{"sig":"MEUCIHzJ/hHHNYFdjymMFRddQAF/pyiAuJmxFNdw3DZ7EQIKAiEA2q00WVlKrKIJ3iZyxcwUVvxSAkFiPfmwzA+w+kzH1Lk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.src.js","_from":".","_shasum":"8e11b78661e4ce56e2252994c112e5dce9cb1e17","gitHead":"6294047788a9cd49e84e3bbdf086525d99a26cef","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples && git add README.md","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../","examplesUpdate":"cd examples/webpack && npm update && cd ../browserify && npm update"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"^1.3.2"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.0.37.tgz_1477841254042_0.4483365472406149","host":"packages-18-east.internal.npmjs.com"}},"2.1.0":{"name":"jspdf-autotable","version":"2.1.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.1.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"19dc2caa98b24c64d796dac26e1243a10fcc9935","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.1.0.tgz","integrity":"sha512-9h2ok19UZNwWHKCT6DhlMVic8XXtAKgMlN30TGOsCFsnRe4Oiti4xdEOtXOqwZuoSCube3LvUeo7OIXc1OvoYA==","signatures":[{"sig":"MEUCIQDgDJMfeMy3XST7VGgyYrMnZArpdcg7hoC8d54xN7L7dAIge7E8d0ApvlkFaG9dI51lpbfSL7+RrFQmzjIAe7N4dng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.src.js","_from":".","_shasum":"19dc2caa98b24c64d796dac26e1243a10fcc9935","gitHead":"029cc50ed2ebbf14bbdf5c89f7915f18f9a39c99","scripts":{"dist":"npm run examples && node build.js build","build":"node build.js develop","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"nodemon --watch src build.js develop & static examples -a 0.0.0.0","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples && git add README.md","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../","examplesUpdate":"cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","dependencies":{"jspdf":"^1.3.2"},"devDependencies":{"rollup":"^0.34.1","core-js":"^2.4.1","nodemon":"^1.8.1","uglify-js":"^2.7.0","rollup-plugin-babel":"^2.6.1","rollup-plugin-commonjs":"^3.1.0","babel-preset-es2015-rollup":"^1.1.1","rollup-plugin-node-resolve":"^1.7.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.1.0.tgz_1478030313156_0.41387520800344646","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"jspdf-autotable","version":"2.2.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.2.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e0cf0fff3d9e84cf2bcd68591f0092672589c002","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.2.0.tgz","integrity":"sha512-1CtxL9vvn8Lrex0uA43srNed5DiX7WrH9k4I9tbAy50AiLPzSOvXw/ggPG285jz6nGFA+HbW+t8adMg0rPRtSA==","signatures":[{"sig":"MEQCIA+My0iDheCIS/NJ9OG1Dso9yFCz3/nyo2h8URm6K0SEAiBqUX6IAsF/7Lklgn4cfE5kUtYMWvUP4Q7pcU1fHpaeVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.src.js","_from":".","_shasum":"e0cf0fff3d9e84cf2bcd68591f0092672589c002","gitHead":"ef970187413807c17e4f073d2d7d4d7cdfe762d5","scripts":{"dist":"npm run examples && npm run build","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","version":"npm run dist && git add -A dist && git add -A examples && git add README.md","examples":"cd examples/browserify && npm install && npm run build && cd ../webpack && npm install && npm run build && cd ../../","examplesUpdate":"cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","ts-node":"^2.0.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0","awesome-typescript-loader":"^3.0.0-beta.17"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.2.0.tgz_1483967906782_0.21497835381887853","host":"packages-18-east.internal.npmjs.com"}},"2.2.2":{"name":"jspdf-autotable","version":"2.2.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.2.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"4ddacf93445125a86cf7396d84793501d00d1676","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.2.2.tgz","integrity":"sha512-c0A0yZxRRlzhRPDmavYIgIA6BIw9AZGG6p4eGoBBqoyoCNGMvFnInZQQvcwotOft4uYCmyk8XYBiyIp3alIP4w==","signatures":[{"sig":"MEUCIQDwZZ0uAGkq+4j34WljmdHa6feDea8jpTiA8jSTzoDOiwIgeOzi6hQzDa9Nh2DUT3/rmtHGX+uMeS8FcQo2FG268Jo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"4ddacf93445125a86cf7396d84793501d00d1676","gitHead":"7f12b2bd53ffbd6418ac630e7dc7f963f4970d0b","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.2.2.tgz_1483978703085_0.23369671497493982","host":"packages-18-east.internal.npmjs.com"}},"2.2.3":{"name":"jspdf-autotable","version":"2.2.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.2.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"f5433bda8a7afd7261879eac915b1587bbbea865","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.2.3.tgz","integrity":"sha512-QeFLd1OlTwQIcO11nM2ciTLHN1fqB/Q4FRMVqYN4rQh4XlMurbXZ7dMkBtsFZNEpwr7sKS6IImJL9WVCw9tydg==","signatures":[{"sig":"MEYCIQDqKRv/gCcm/Rk4FvBBFsieXHjhdXQKInoKjyBVAWIAogIhANMdLb9n+BdKRUOpFi+V+zP1EJiO9JbUxfQl8OM1h5kP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"f5433bda8a7afd7261879eac915b1587bbbea865","gitHead":"094912fa1f43933a09cb646be27a510b7978655a","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.2.3.tgz_1484083148583_0.14099680609069765","host":"packages-18-east.internal.npmjs.com"}},"2.3.0":{"name":"jspdf-autotable","version":"2.3.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"ae9b227a899c26c08a2f0d35835bc56810c10b75","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.0.tgz","integrity":"sha512-udVJI32yfkdZuYZuNreo8FHWDWdYPRBJixGWTJ3Nwm36FisJESsF4LXy0GexLrGn+CkxSE4kA90G9Bs4e6TNTQ==","signatures":[{"sig":"MEUCIGnFeBlVfXKfCSn3nPF1I6iJ0QTn86ao1etT46SZad0JAiEAkrRNT9utItmcT8Uxq+bbzkNyZjhIXuo0mc+9oYhi2I4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"ae9b227a899c26c08a2f0d35835bc56810c10b75","gitHead":"70e389f34f11b15410a7c33e86d9fe4ce7297248","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.3.0.tgz_1484155625198_0.880838890792802","host":"packages-12-west.internal.npmjs.com"}},"2.3.1":{"name":"jspdf-autotable","version":"2.3.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"c291623422e8c1c6a723f55496b95cf335e9a79e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.1.tgz","integrity":"sha512-D4cmB2+JL73Y5iiEHFUFT44kJ3S9jidd1a7U70xOlfaN9UKRBir+KIZZvulKHU0YVcKcqhyBQoF30NF/Ih2pCg==","signatures":[{"sig":"MEUCICjyRjdVCaJfu++AQ5XHwIEkrGhkRaHQlXlY5oAXd/PKAiEAm1Ug2OVpb9YbBWI0CDE4/603qRd3N0VO02VKVEPBAd0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"c291623422e8c1c6a723f55496b95cf335e9a79e","gitHead":"e2d31bf0a963a4c9cb54b909f90cf3cb0b7a279c","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"simongbe@gmail.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.3.1.tgz_1484657680747_0.3510847135912627","host":"packages-12-west.internal.npmjs.com"}},"2.3.2":{"name":"jspdf-autotable","version":"2.3.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"a781ec09dc77b1a4c354bbc546b372e3a2b13117","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.2.tgz","integrity":"sha512-bNFM2MqJ4p3ebaTA/nIyPFQmB/x5mCK9ieOm02BOERaKFmDdKp1+HrU6D4bLWQDLwInjWNZWcA60uUqPAdXJ9Q==","signatures":[{"sig":"MEUCIQCHaUlREGvSef6OnOmcd5pYU9Ad7er5c4z1iEiwvVIYWQIgCpyVbr9js/Tmpvno8lZSMkI+ik0E0STCZ2gpzwQQEDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","_from":".","_shasum":"a781ec09dc77b1a4c354bbc546b372e3a2b13117","gitHead":"409ae6a0f6b21af849ff950e8404dc795c3153e1","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"dev@simonbengtsson.com"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"3.10.3","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"6.3.1","devDependencies":{"jspdf":"^1.3.2","mocha":"^3.2.0","webpack":"^2.2.0-rc.3","ts-loader":"^1.3.3","typescript":"^2.1.4","mock-browser":"^0.92.12","object-assign":"^4.1.0","object.entries":"^1.0.4","webpack-dev-server":"^2.2.0-rc.0"},"peerDependencies":{"jspdf":">=1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-2.3.2.tgz_1495546841246_0.48860401613637805","host":"s3://npm-registry-packages"}},"3.0.0-alpha.1":{"name":"jspdf-autotable","version":"3.0.0-alpha.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"badb29ffea8c9d50c936deec6cb49990e1d9426c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0-alpha.1.tgz","integrity":"sha512-aKe/Ego951MbqD0VVJek6OjpsL5Cjg7bkEoIBbBdc2rzZfQKxcf9u1ZcKQ/ReRVQDWU9nZw7rtXmX+FoEGsH3w==","signatures":[{"sig":"MEUCIH0FUqCzo6KC/+YBPjxUudKkTU6pEIeDhecUCsJdf4t1AiEA/PqRDhwpVBfuiTbFz5TAWvdr7IJ0O9LdDBbEkMs/cjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/jspdf.plugin.autotable.js","gitHead":"e948a34b4a27a9aea4230aaa48be13cf5a5938f2","scripts":{"test":"mocha --require ts-node/register","build":"webpack","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"5.5.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.6.0","devDependencies":{"jspdf":"^1.3.5","mocha":"^4.0.1","ts-node":"^3.3.0","typedoc":"^0.9.0","webpack":"^3.8.1","ts-loader":"^3.1.1","typescript":"^2.5.3","mock-browser":"^0.92.14","mock-require":"^2.0.2","object-assign":"^4.1.1","object.entries":"^1.0.4","webpack-dev-server":"^2.9.3","uglifyjs-webpack-plugin":"^1.0.1"},"peerDependencies":{"jspdf":"^1.3.5"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable-3.0.0-alpha.1.tgz_1511027612701_0.6427028279285878","host":"s3://npm-registry-packages"}},"2.3.3":{"name":"jspdf-autotable","version":"2.3.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"769a34c4a152457e014436d1d189d50caf9e8b01","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.3.tgz","fileCount":48,"integrity":"sha512-M4bEsnJEbqRp7EQeGbXB+Cbh1/kGohAnQlwoH8m10srXJOW2j4vusw4KVWIOuA2JUMc+DfAr7+WXvHuoPOLDpw==","signatures":[{"sig":"MEUCIBtDuuKzSt0qEF5OBPa+5BxPtIN7yiXMSsbkFnUL8VTMAiEAj+xZEOXRWzT0YfXiOkv4irnH2bXEYGdP7ntXI17HUSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4030172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBegkCRA9TVsSAnZWagAAdRYP/jQ1qInaBQ91vdY+V4HG\nt3md/dYRyjuNKtZkcP6uajAP+HFQIdG4xXdriw9kcPn7tJRCQzq+5I+eZZ/7\nnFL7MngBwOHoA7qIcCE4CYouHQLL952Fruw/HMnhDC2BCoIcn/IUyTAhUyep\nimwNd2Y7oAj2BYJpmkPCDRrzWAnwfzEkaZ40PahOizWoXqbPoY8kRvJyHDno\nALUGe7xrykz6aD0MnCJmLv4rfpk6u2CPdWVfi389F9MUry51YkGr5/hNb1wc\nlyr0Kzg2vl867RlvddtnZBUH8BsIn6iD0vJjMFDpdTNq+COgAqA+jYdg+lYA\nE3neD3t115I3wQUZ0omAs80kqasJwN7bZ28qxq3cIZfp9+1igKTVNceu7u78\nMPe3KphxwSM3fEeFlg1OKhp9hJmfNntoZerZxkjku5wvPZ5UFT5YADNmeLc9\nOIhVzFUk3Ef5sr+NdrtkQZ1ShDBoA4dyuMPWtr7/giTxWzURgaZpoF+Hk4Ev\nef+18Trh7Yt8TmR/3gojCAk24jOB92BEn/SbLk5W4J148a1FTXnyXdU2/KXg\nXzERXIZBCW402W7DGuR7+BKJpOpO/ZKBROYnvpCwndmNpSZYTIX6/ZH54rDx\nouuS+VsoC9REVNe9oQ1I1qVsPgPuFnhceofCFY/pGs8QcmjGHOMIQSmnobI0\nylJz\r\n=7iiI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"3f7a01edc9d40880cec91d8f65448ede74f9c632","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.0.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.9.2","_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.x","mocha":"5.2.0","webpack":"4.8.3","ts-loader":"4.3.0","typescript":"2.8.3","webpack-cli":"2.1.4","mock-browser":"0.92.14","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.4"},"peerDependencies":{"jspdf":"1.4.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_2.3.3_1527113763517_0.8162233043241411","host":"s3://npm-registry-packages"}},"2.3.4":{"name":"jspdf-autotable","version":"2.3.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"73041dabdcd18dcac657adb62cfa45c8d3e20272","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.4.tgz","fileCount":48,"integrity":"sha512-4emcFHbFLMrmf5YeqsL4G3ug8ZL4tmvELXKEw2g6GpyX1y06xMH3VUtntrQ/fXgBNlNkTi2Opx9uwvrUgZZlIQ==","signatures":[{"sig":"MEYCIQDHb4TzUu501PavQwYrRODR48j1NZX22otOMiERom0/+QIhAMFlWYbwVfHnDIW1zemDaSBSq1vRdLT3ZzAyOgnC60Cw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4081234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDHIMCRA9TVsSAnZWagAASLgP/iuYJqsKWbltvJn2u5mI\n0BpsZmaEn1NetSOQ2tx+E5oL/wdPtFBWIVuRXOT3S3rz5d5iSoba8zMgZGm0\nuZvRByIgvofm5V1TtDApcBiRkGHSE6foNH6W2MHkDFhHU6ELavDSvf1hTsiu\n5Znd6SIBy8f3fegKu4Wx+xJLWG0hTnHlu5jCPR6vBSjogP1lIlkpfjDENPTm\nZmko5BHqZwiGgYJSxWD1MhX6jh4Pr+RPckDcflfQ/KzrGfFUe7/xwMsoqMpz\nOEN5foJcxIiHZI+mw+pRgw0Yalxm7kYNRXHpVJPOYKRK94+dljvmCdaojRr1\nSeH+OnQOCXqWLpduIpR+2ykDR+ChXQ9zPBFcsZrVTL6/ppqayzx7YjKTnjgs\n2UMJOVBdDkaHDNYERgTRNOHspWRObRaAF6NbaxBFHYL0m4cn2k4Jl8pooa/K\ns9/3CLgQcCIDJM4c7eRyN47CdG8bWa6WcnmeQqay5TmNRb51o5nVN3r+BOXW\nNfc5g7cikTr0Dx5YO2fdF/9jrKnrnjDEepR0Mrxw/UYMVXbcBkFGJbDT8UlF\n5S/wOypPvBQQy5G8/J5sxel16IBDuYtAu2YmNIOm3cxIQRYSJV1MTscMzeZx\nlWbJf1GgEIxBc2DJFHA7ssfAn6slA7pzUzN68JLmJ6J5e1PbN+KQxopuoU2T\nCWTF\r\n=g941\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"3dd58dfed2ae619cb438aa723fd85b797aa1b8aa","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.1.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.9.2","_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.x","mocha":"5.2.0","webpack":"4.8.3","ts-loader":"4.3.0","typescript":"2.8.3","webpack-cli":"2.1.4","mock-browser":"0.92.14","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.4"},"peerDependencies":{"jspdf":"1.4.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_2.3.4_1527542283601_0.8557661275148112","host":"s3://npm-registry-packages"}},"3.0.0-alpha.2":{"name":"jspdf-autotable","version":"3.0.0-alpha.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"bc0089b5942442d61d13ae3c32969d0f3562f134","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0-alpha.2.tgz","fileCount":56,"integrity":"sha512-YPtBCnalGGOt8U/b8gfMNWV2TgWuqUoYG4E1neuMOvkaVhLvLfffr20ZU3qPtUWyObTmusbEXKMte3+M6so9SQ==","signatures":[{"sig":"MEQCIAsIxn0oAh8gVAaP+m6DDNiNgpd8kqO3XUZ+GrnxEKyhAiAu+DgTjTe5KKMl57+OGN6xMFWOiAl00ulnVcmOz0A1Hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4000066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZiXSCRA9TVsSAnZWagAALzEP/2ycBlDsQC2CHq7NRINJ\nbwImFoerio3XvCVlQdk3onVr88yFgAcRr9Tb1abP7xKrGegVgdS2rKdMqzq4\n30hUERt6FfJfJA6rSdmOHjUG8HCTNXJlvrpPc1fqIlLOh5fsF9NnbQX5lV7b\ndRjvT0auSLuUTLiit9+m0GWV8DlFs609EaP7OoNWE/wBWHRlEZWWm7ij9gLz\noGWaKi7syBKDgaiAsDBTXTTmPPDd2/KAxT4e4Ci/I5jfGc2tl4UIR1Kxp/sT\nlLmmiyVYvc6oGRssJOvMLm+eAoEEC0zrOit+Jxaqf0vDkm+x9/jn4SMtQU5F\n6zRxv9Bz2FN9I0pog1ZJ1WeFY9kw8xoZKMsI2wskPVm53tkBdBBVyEZI3HDG\nqttgyjMPsXvZDVXMT9SRNq2r+ljd3zwhnBNRVTofOzDy7N4tlNaEnQFDnybL\nIObZL3Ppb2tNNn6vsRVvil+W8dAHIDA812xaRne9l9oxghOqt3zEG2waCsTp\nDk0gO8lTt8zrTy3uWUb6nxGT/QAsfVcE8ixOEsojR0k0Wni8TGuV/I+A+Omg\nAgeM88h3qmONK10Vr8KdP6x+83w3/Op+TSXgxu8fdW8Q8FzT8HMr0+ZLdLsT\nkhoEmXjPqgEbHZzLpZ/UwtfAkG0EWToBl11IUkrgYBbHlBw+RnYk83q/XF0Y\nHUW6\r\n=lUK2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"6abb599cd51898de401d50ee1d21a46984d4a4ea","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.3.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.9.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.1","mocha":"5.2.0","ts-node":"7.0.0","typedoc":"0.11.1","webpack":"4.16.3","ts-loader":"4.4.2","typescript":"3.0.1","webpack-cli":"3.1.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.5","@webpack-cli/migrate":"0.1.0","uglifyjs-webpack-plugin":"1.2.7"},"peerDependencies":{"jspdf":"1.4.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.0-alpha.2_1533421009890_0.7226611537971956","host":"s3://npm-registry-packages"}},"3.0.0-alpha.3":{"name":"jspdf-autotable","version":"3.0.0-alpha.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0-alpha.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"9e999c5e944663e9e59a366258a9e42a57d2bca6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0-alpha.3.tgz","fileCount":56,"integrity":"sha512-dosi/jwV2KllZaVy1AKGUZr+uydEt74as6zFfRZ+x2PPk5uQiwIyUKsND8EvIFGbMrDhNYmVPmsSvUC826HVvw==","signatures":[{"sig":"MEUCIA/Syrwo9AYlUtcrkuRLP1XOQwm5Bb5POibgH9tsheBDAiEAvinMjOw8MEinSV4wC9aT8sWjla7Sr638UXd0f4GOnsk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4004878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbagZXCRA9TVsSAnZWagAAGc4QAICIsFNBpp8dYYYyozA4\nKaU1T6hVfwrZwXfdIpCPx1+wxKeOW4OIiFhmVoDAXm8/5Hzq2CubkGBS+rI8\noNiYaBhq2hH4UMJJBejjVDipQ/b5W7JHUNaPlAkZ8HlrSwP9zwu5ThF96qrl\n83oT/wrRS+Kb/jhqVEM43adxLN8JxH7WgDmpj33XgDDjDMEAESRSb3Law3Zl\nacPVYibfeG22Q4+g8SMJA/yT9BNgW7bFKnXWxrKQVQrFz6PEAnnvnkGBZmbT\nWJFnk9gw7wLNXDinXL82RKNy7vqIlp4JSA8KIWV0JjJCZvjcHxn+/1pKldiZ\nr04xcZw9SMzgrNFzlIAfPL9bzht/n3qrXcXVruyVV96Eo81NqyPAavAtn6E0\nwKZETNrvKksfoPfY1JoBnsBFOAiHePae1D2Kqync8dvlMaJb5i9a6oCrZh1G\nVwD+iat+ejuctQTVqXCRUdngNYfzDoHVnm215wuuUJF4i5NIE1bKiegAUjLs\ngg8okMBQgOxuOEEumJxNMoB+Y1LqnXl7AXRwJPlbKiWMY6rbKysMZRNAcXND\nXII9lsij4FT/o0eccNACSj2nVXo0YjziT8rS2XvA6Shcf729EqXWj+aWy/NM\ncBV5NOIOjabs4qD5GEPNlLiLB+mK7GKWl1W/Lbodsn6XsUHnDaKC2mYkgqT8\n9Pnz\r\n=WR2I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"7c0f17e7aaa678b65aafad2416ff27c40e111c47","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.3.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.9.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.1","mocha":"5.2.0","ts-node":"7.0.0","typedoc":"0.11.1","webpack":"4.16.3","ts-loader":"4.4.2","typescript":"3.0.1","webpack-cli":"3.1.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.5","@webpack-cli/migrate":"0.1.0","uglifyjs-webpack-plugin":"1.2.7"},"peerDependencies":{"jspdf":"1.4.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.0-alpha.3_1533675095100_0.34766549176565453","host":"s3://npm-registry-packages"}},"2.3.5":{"name":"jspdf-autotable","version":"2.3.5","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@2.3.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"6af23c191c00af86555bc0f91a21c7f6148288dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-2.3.5.tgz","fileCount":48,"integrity":"sha512-QQzqTKBAC20VfuMjrOyqHArFAxKJx1oikWL8qeH+c6aF32F1H2jI8LNPVUWFcYGB0/XBlBKTT2NSQZBS9TNu2A==","signatures":[{"sig":"MEUCIH5l4rbPQ6DM14vsXJ1mpCRp9enlFfPYOBRDAobv1LmZAiEA0YwobaIF057QPpbJxjOUtJsXiB+EddWRTgmKza/zDEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4092783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhFg1CRA9TVsSAnZWagAABWoP/2yHiLxJOMT4DxP3g/xX\nBAq3+eiBrYDn2rq8x7EAFw1jPeLCcnb8q7AwNp3fJM8QzcQidorExK0QXm/T\nigKDOH6xeFgXMA5sIjbnE4Bdr6chmgc9eh2QeuHdR0REKKyf34+bl6WITiaD\nW4AbysyPtKiBPjmkJ5GxdIt8Xwz5qcrn10ue262uQ3ShRfzAX2Aq6sMH2Oi8\nZLcT/18NOi9BLuvfjGGnn+0SfFjJ4/Rek+Xnq2CBNHAFlnUtr72TrHkS2Zdw\n5kVTY2XwuaR4DbpUiAX3FQBy/8PbLe57BM25aekWABfXtkaxzhINIuPkjlsN\nxTvf5iG7Q8YON7ZQxd6qKwKoPFyySw/KU9jtK0PTsnQW5N8vuXuNOHIi/q5a\ngOC52Hk7mPU2WWen7Zo2jasKXoap9P0s4sHoXzQsw9blA3u82jKznWTAVPLM\noRDyu2onJML/jpeH60myHbO5XPCBMRIDOkkO0k+oHaZboWp+T6q31iITWa0E\nItbsQHRl/Pp2rLsZDlO5uYP1EHptXxarxciUmfjboLvbuitlSIb4Y1S+AWJ4\nAGVyB4uH74UldfUqZd/VM2PIrS0TPQ1s3JnC2KooL67W76paEFxtTONC+ktT\nKhoXi52Bg0HHV/8m9PwVr4KZCzy7UV5IJO1bt0maQiffY7j/JpoUY0x2isUs\nez+5\r\n=z3o/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"fad6fda338816c4584c10ebb7c650c357cd8c0dc","scripts":{"dev":"webpack-dev-server","test":"mocha --compilers ts:ts-node/register test/*.js || true","build":"webpack && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js || true","clean":"git checkout dist examples/libs/jspdf.plugin.autotable.src.js","start":"webpack-dev-server --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./dist/jspdf.plugin.autotable.src.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md","examples":"npm run copyLib && cd examples/webpack && npm update && npm run build && cd ../browserify && npm update && npm run build ../../"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.9.2","_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.x","mocha":"5.2.0","webpack":"4.16.3","ts-loader":"4.4.2","typescript":"3.0.1","webpack-cli":"3.1.0","mock-browser":"0.92.14","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.5"},"peerDependencies":{"jspdf":"1.4.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_2.3.5_1535399988580_0.811470746991247","host":"s3://npm-registry-packages"}},"3.0.0-alpha.4":{"name":"jspdf-autotable","version":"3.0.0-alpha.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0-alpha.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"ae4778c4dec9ca9a446a5a4185388e07bbfdc6ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0-alpha.4.tgz","fileCount":57,"integrity":"sha512-IO8dKf5Fp5oi+S7G8npvXskKED3ogmGzhXE9p1B440cM0qg1QFPH38tk/k3w1s3IjdJYaboD7Px5qKvGBGo7Qg==","signatures":[{"sig":"MEUCIQDqirQYvml6D3l0J5leG/jA1SUSYkxaJF9ZoNQVBa3mOAIgI5oz6PrxsoF5ITwO9XQLZvPH97vQtjp2dTbmwFJvVlc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4009190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1cKNCRA9TVsSAnZWagAAtR4P/RWkd2N0rAzDHDCND1B+\nUBzGC0V3XVXhplvNYvQjzkNRjs6C8GXee0GsBpFq20pGnDnLBpMCg99IwoGS\ndLUjr1aR8gtfsVfEJWk+wwCDJIvmaKBKzYc5iuWRVyyet6RHjY3q7x9XpLd3\n5OHNcx8YFlz8GtEWE0/V6jWf4t6jwEBhF9QcnAimcF3DINNktWNHBQJVpySP\n1o2lV3ZATIhqqeL6QIRjSuoCEDBIqdVvA+BhLweoLXurWhIjKctai2+dhn6T\nOqthqUyyGUknvqS/C1FEVq+AGhth6BbD0IVhgsYX6662GslYNmGunGyajOOK\nDlrajZePERnJTcdcYyVePD/S8ytKh3zauxZkrLbPGPWN8Ungnrx3mh2/Ra0F\npJkHMNE3R0pcoDY21jex8i5SKDpmER2HNsqmjNe7cl3QBdWGPNOMrIHd9nYi\nVmYbMFs3Xdz70BnHConQ5oUZLArbB9NzGwy3DOq/oyiLac0nzb/GhG++LcME\nJDKKRxPF3ZImOqUJLvVmq+x6hffIZfbxLKk6JbC+bT8wA6s8lpCKnsH34wUz\nqtQkaZI3I7fKslk6Rs/kY2nas0AiAmeh6s80JDCr7smoHq3dzzkQy6+paBfw\ndldEK/SmD6gaeaQlJDl3rDanc12wJKpR3vKx0I5JS25n6O9TZktOha4I+Ywl\n0Ksq\r\n=U1U0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"dfed04a4bdf0f0f381b270810b60012649f60fb0","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.4.1","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.13.0","webpack":"4.23.1","ts-loader":"5.2.2","typescript":"3.1.3","webpack-cli":"3.1.2","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.10","@webpack-cli/migrate":"0.1.2","uglifyjs-webpack-plugin":"2.0.1"},"peerDependencies":{"jspdf":"<=1.4.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.0-alpha.4_1540735628468_0.7171376892901793","host":"s3://npm-registry-packages"}},"3.0.0-alpha.5":{"name":"jspdf-autotable","version":"3.0.0-alpha.5","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"12b65e5def60dde2b3c3004ea6117be7e5b991e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0-alpha.5.tgz","fileCount":56,"integrity":"sha512-rYNbl5+fxLhKD1UoUHbZQkvbQw5IjeR6Kmqzk81u3LHGUgr22WMJ7N5WIXMOcM3qxVZ+koLrtmuDzz7WISHFnA==","signatures":[{"sig":"MEUCIQDSXHGXNbeD+HUyYBc5eDVg4E4Lwn80Hl8nZ5cEsQTFbwIgLuNbRe2xNl8zRWVaUbQfdGdixq4bgUkUWn0RLIcPmX4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4008241,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcApANCRA9TVsSAnZWagAAVLEP/RRIJSJWjsk/u4aoOfza\nA+FVgteu6YwTCn69aEAWEmbuAqx1zvJ6ynsRIU6YTqbNrA2UiBkqOmi77PFK\naMOs3ZrS8j90pYU/HkT6MPOrQue7/LKNKJVFrw1CkJyPRMJ638VrHYqRDNa2\n57rOtxWuiQOvwvX5Ri9MkDkc3JGe/51A3tvBFm++nuxTK04tXvYoXrUzcP7y\neRDhjCPD6hjQo7jL07HhsRZCij1ySr7XxbSQsD8a8k8cxiyQH5XA/enR/ejO\n3QuzZSodQG8D+K+WJTH4XBynBrugNKMpn55vKHck3vqqNKnyv4Vs+Dn7/CcZ\nD7tpeRZYmowtbNu8HWjxbNZiep7aR9yWB7OYSS6/8eFzK8hUyunKB8EPpPmL\nxI26ZNWM1hGe5oE2rxY5Z8f+hOtCLwxLT8YlxPOaNQz7Q6r96rZNnNmJtray\n/SwdYHKBZ6tdg2k+VQ3WzpOfB5cUkXsNU7F6Xpq8PjWIm96iZr7Nx6VUpvJA\nio9blaNygX0Ixt4RAGhLEWIjuWZ9zPsUxpTwtIV+VI3nEtWLWOWvldRgoz3H\nZt4AUjANmclwi2Y3WgszWi+aysbERzQtG5JnXknvRyywxsTDvafqyYMFlP+r\n1rwMxq/AUzapQO6orshOUGzoyT7AsePIxC4nS42BrRvhdW9JwXEdA2kFAUUO\nZtxW\r\n=VgJ1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"4e079b96510e71917814779dfb794845b839f934","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jspdf":"1.4.1","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.13.0","webpack":"4.26.1","ts-loader":"5.3.1","typescript":"3.2.1","webpack-cli":"3.1.2","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.0.4","webpack-dev-server":"3.1.10","@webpack-cli/migrate":"0.1.2","uglifyjs-webpack-plugin":"2.0.1"},"peerDependencies":{"jspdf":"<=1.4.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.0-alpha.5_1543671820395_0.1199139591875864","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"jspdf-autotable","version":"3.0.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"25cd8617c3017ad1a4d3c74c466d88caf535923a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.0.tgz","fileCount":56,"integrity":"sha512-HMBeVFf2JdK2xyrf6EUGmviAeGEkGh4A7AX/0ie5tsePIorDiCbKbvmM6mdjaO0kLUog/ydo+fV/YBUckzgphg==","signatures":[{"sig":"MEQCIAbD1Rj1wmhgaRHEy9Rz3wcB43fY/nh7+WImWNP/WckCAiAGIOkRoGOtoeu7PwffTZqUSU8j/xlBKujj89qTe5pbhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMLLUCRA9TVsSAnZWagAAzRgP+QCcKdH+PBfjXKkUgiqB\nWJEuCfvJ+6TvKTJupy1qTxzAhH5Fe92fmcU/270SU6IuGGcVl8QxoA82hN5v\nSqFv81qaRmBCnCenAIum7lv3GiVW+4YD0SEkNv953CbhWrHACKjW+mQ3GBR2\nqTgsXOmfN1cEZgFZTrhU73sjLk9HPfZTQTgtObMaWtiyn2Op30VHXoGnWm1I\nFRR2fsQK6qcahPG3gHy3CRz1oxNvznJyZONdsJI0CQUl/zF1YIjvWn5X0Pn2\nXNaCtCroyp6ISKT3VVp40tjO2g+KA6OS/UkAaJxlSvcj3sX78b93OJsdo6B3\ntPrs118L5e2RI2CBDbzs0jEnetfpVSqPrxVFEIGmd3ybXGRiCLQGc6qwLtO5\nBQZZJKLZux+oGm3R21gCLoxunC1Lez4wavRL3uYszQfHQsEWIN+HXzInpMNo\nf+4MboGEQnrOe2FLPksWZdpT0TNW3xIbvljwbf+rUHL6SMPXgFO5tA9NyzvD\nu2uZvLOOz7OTssfqZmfMO1xWT7kwbgbf0DdRc0PykW2KJBbYWCp/A8EMx1IK\nCOqlug2gITKiFRjuMck44D3oDqaZPD/LRdFotPhnlt3MXMMQQNTO2/7DTth3\na2/B+aXIrIoYGXB5UujTpMVEKq05KDrmsjl0tK+tdPNW+ef9/z+CbfMbO/26\nQZTz\r\n=kUAP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"46e1edca21dd66f6fe784624cf7d89e86261fee5","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.14.0","webpack":"4.28.3","ts-loader":"5.3.2","typescript":"3.2.2","webpack-cli":"3.2.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"<=1.5.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.0_1546695379923_0.7193239644082412","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"jspdf-autotable","version":"3.0.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2b25c8e10eb560ff8f2525166683a79d92de1ccf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.1.tgz","fileCount":56,"integrity":"sha512-JUtfbKMwT3EtWPurxkRScCNT19mO5FSHT1Ghto0GBvrGnsgkZgWXFZN7g4u4uqu78iN/hzTq0MBXkVKBDMCmRQ==","signatures":[{"sig":"MEUCIHDAx7OYKc0gvzBgSCjGqT5Lri07VumVS74TsZ/MsziUAiEAiL41EpnsJGX2M5lJEFlGT+sG99COEGcyAsKrRbt0Otw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMLcSCRA9TVsSAnZWagAAVSYQAJLIAnqyiG2b3JsPu+pw\n/jYpsvDZx3Q1ewwTd+JUcAt19GacFWGaXwZSnFWp+9wf35QTscHh4ZBm8tQM\n+0h8yGIOt5eiTIcwFzV1Hyxn1rhSkDjhMd9tSbMJHYCL7hsb1QiGAl0Inr2G\nwEeZCj6C0ulgJIVKUrej00uMP/TQMQW1/Zjw2O5qxY8pSHJxOk7qOvZDpE/o\nmCQ6ApFjASf+wDXqvSxe5gGEdBjwiLLyNYp7lLWTyAGyPQRv/fQQDrhtvbvZ\n5McJmXW+PZ7iHSUaEKgddtrNxZ5xo64xEB2BEwz3/eUZlumPxxrCc6lHKa7l\ns6Fooy4QneUVbS87TLtHIxGn5Y3Fm/2PY71mbCwPcqFtYh7er6bJwasdqiXB\nVpYrZeZpUsExUA1WubGBcRCNArkphOilpv5+GwtwHW4r12kAisx9RTEs7t9+\n1h4lvvRX7+10R1vIjdjujal9VCYjEGOwfGlr5lLXBjNqhkHy7cZ6RNJ+jmU2\nmjHYACAET3LLWJZF2PQFqdf4V6WYkJ1+vbAn+HgNUW49PQU2h2fMWQwOJVnG\nnsqWaXbto5ohKMjphTxvfXUXdF71FTJTShDcZlO/wHlyv9vTkON9M4C7gtTC\nf3GXzzfjKOaYyT1oiLIz3owhBQH7Gy1f/AJPYi0syVvOm+mKu3Om/bUeVbHY\nIRSl\r\n=C3kY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"2ae7a54a276317c6f546c09d6cc78fffad94777d","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.14.0","webpack":"4.28.3","ts-loader":"5.3.2","typescript":"3.2.2","webpack-cli":"3.2.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"<=1.5.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.1_1546696465735_0.9893704690976133","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"jspdf-autotable","version":"3.0.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"fe8b9c128e43892c87b15cff8e7c16ab6d1c1f02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.2.tgz","fileCount":56,"integrity":"sha512-KgXvXWzMauE84gO4v0yFkQckR+iDmFbU1QcStdtPgHrU8qYL1EyaeKB5ThBfLfNfwO5xSL7Pi9Etb70G3nDXfQ==","signatures":[{"sig":"MEQCIHiPCZVQcFB8iFbUfXO2iqy2TvRJKT+AaCeyrXHwUGQrAiAm1y6ry27qaveVJSiDBwPGNbt6gXLL3nRMJrL6lDK+1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMMiDCRA9TVsSAnZWagAAdooP/3yZtbcKVrrkEEMsdZc4\nt8SGReQAOcQMHF7G7UDLA/NuAc1xzcBWgnJAXoNzOHEMME+OqC0rBikjBCct\nejiMMjvrLRL58UkvobE4W1p4da2HfrsaFpvflk2Z07/R7xJ0Za+AxUPo2cYR\nVZtBTiNI5ea+kdW3rZHGqVcC33PlzQB0OdReE5JLKjHgguOTC5wBShKG3JZy\ndalfmQ2abViPyyGEd0ISz13JIK9js3h306mRHAb22UcknVlIRkaOe51snkRE\nKht3G7bWgBLlQGWY9ftqqmU1ThCHTMHi5Rr7FmPjlDCPn+ZE4vpsbO08qkDy\n1ThbU0ng5qk2Av32YbPHX/7UJZIjvm8r9iFtkYwmi03jUUbmFuv0dzlLp/Ul\nBY5QHmySFqL6YHe6z0/N1PVHjcnZV2BRGQ648wi9KEBoJygyMyAiZfM7S82I\nQ9R1axDT1YyEEpma7sCMy+l2NV8wG00y1B/1NPjcg18odtK5venKdfun+PrA\nyPw9zh5DB2U4WDjzIKsIdfMnX6ixNy28rgayfi1VjFPJ1N8Fxyw97lm6anv9\nSXh2o8LB8+zv0aewQmD3fWJNgd50FTxjxzgmwXafD+vpTwjiq/1w9f0kxFag\nv0K2EAMNdhXA+HrXpWaUymFgudU47y7cD/AJH+MPMkorbKNaM+9zz3XFmV5O\nbaeK\r\n=i+cD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"f758f7530045880222cf2de158037c3187d29f63","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.14.0","webpack":"4.28.3","ts-loader":"5.3.2","typescript":"3.2.2","webpack-cli":"3.2.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"<=1.5.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.2_1546700931210_0.3782220358408337","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"jspdf-autotable","version":"3.0.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"bdf4d93aafc2bd64dff596703c3c626dd428206c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.3.tgz","fileCount":56,"integrity":"sha512-86jvVQaDVXyBVRUF9dRFDRquCLKfOCkWYirzXrk2GMe7yliiCSGAZWaXkx6G1ClTvOtmBWHq7IN4FXY8tmIQ4w==","signatures":[{"sig":"MEQCICeGgmP8bVX+lk/b2YHvTtTp34eFS1EoHLJ5ZxJXOlUFAiAqw/bDiEf9vf/am/0J+Mh75OPMDlUTAsIiZgsp5uX0xQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040929,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRxjXCRA9TVsSAnZWagAAZSQQAIvs7nKDaxsPVS1u9//3\nnOjorC0K39k/b0Lqgi6fqBfwmZZ77oFey3ghrNZbbNErRf/vpAjPk2Gu5qT/\nNZPN0nXRqYA/YHp74VVNfpiIJ6j36/Nev2IlIa4uQBrZuVhCd7jmE62UeYjA\nIbyHw5QedijYHhooUGNyl87CwLqNvHWKOlt9rkWvuP8lN8/u/NJqX27aRMEZ\n/KAxlQVWpbPq0RoE48XpyRWnWNOnGnCb1vqL90iPlT+XigXO4gQuMUHvVO+D\nzktjpaeFY/5a+bhF3ZEdQ2szvKKAyfCaYHG2wt91+oIN9uF97H2Dn9VW/Mcl\nProjpmC7SWbfsDaut/gCyaonF0ZygXy5/OQrLovrginZm6vmC1gRoczmDcxK\nrYe7d1Z5FEWtl5FzHN/eqTjP5BAJAjw21NO9X1mloXEfpz+qC2z7HGAwroWk\n1rQtbLEH0fLJ8Mx/9k5QaZSkDQsopxyfAM5Mvr0EUANVo7XClO+U9fiSTv/6\nnZEXwWLf3674e7znWRX4wM1nUPUXZQGjU1RJRqhu2arEtf+WSGtjXeqHpnZn\nixYCM1+bojP2E2tLrnPXuq6tVhkhZARadFkWrCNKgsGlaQtbi71VfRMwL34O\nCGcY1B69fUn39kgMjlKbOGKLMXxTrs8cNNifF9QR/3n9twMSng6bb7wj9bQD\nPALl\r\n=SqEc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"662bbf3e76a10c6c7970fc907aad0604fd0baf23","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.14.0","webpack":"4.28.3","ts-loader":"5.3.2","typescript":"3.2.2","webpack-cli":"3.2.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"<=1.5.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.3_1548163286722_0.3672917952596175","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"jspdf-autotable","version":"3.0.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"df995485f37fe50bc6c2ed933063b9e223eb80a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.4.tgz","fileCount":56,"integrity":"sha512-S9+1wZVBQCYuEISKUycHYzXypJmoidI3g2/vqXAbjB0tR1LztTUTRD5mx0+RqigZ1A62zMLuDNP9BJv3HNrj4g==","signatures":[{"sig":"MEUCIQDdmI8QnwyyDhNbmP9cdjVDv/x+2lu2zEisJQQz7dAl3AIgEBEa5CSuOF17k3Ab3Ty9cGbXy2d0eez7ygYdz2qVlOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRxmQCRA9TVsSAnZWagAAi7sP/0QTE2DWoUqkEaGmLR3/\nn7xi+vEIavy1xlMT/I5xMvEC+J2lfDcpcvdwQbiOAc4Y3xZHXaDYC9YpDkHB\nAYx56ynJbWQY2oE0/0SJA5EYyVsRn07eoWkmVgtcvEsrjD+wfGmCP4BqOTal\nycL4vfJtY06sH6qXhTFvN7ge6oHl0j/XvWtQZvJvQd1mTOiXB6Wc8UYmFXRc\nBDEFBQZZnOX+SfKyimEznhPc1hFFSM1n+MVdRccu18cIjduVCNiarXqY9VPi\nPsqMEzBv8JYg3Cu4HkdDcMLirMbW/QNv/msL02EXzz1OzT5QJ+ZLK2qKWX8A\nIF2ES43qQws0urdxx8peqNR58wHRstW93TdZwYV0Hv5IM0b9C4e7wHB3lHaD\n1z7ZmojojcL9xfmd1tnlqLJL+CQGrgHDdG7PrEbOZ98cYoOrVvI1kNpqCEdV\njkiAwEUJxEb83NqFtZWwKpyMKRAikeVPwq5Pz29UcPZdk/HN5HGQPknjCZOL\n9I2U3FK4x9aQIkk4cwEtcwLFvrg9uOqOZr33JTGoqSvsXsgeV/EzxULlB1rQ\nSsBrqaHhakb3C00NJU5PZOdxGwa0XDfvD+AYXzoVvlWuaLDfnmn5LaLSTX0R\n6KkVJLWoCwhj7LKFzMM1icNwjZwwGkobrKchkOXLtWNUkAtE68L4tQEtoiZX\nUJRr\r\n=wYjS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"b426e0ad7040d50b05c14dd28192ab1f8ba67d0a","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"7.0.1","typedoc":"0.14.0","webpack":"4.28.3","ts-loader":"5.3.2","typescript":"3.2.2","webpack-cli":"3.2.0","mock-browser":"0.92.14","mock-require":"3.0.2","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"<=1.5.x"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.4_1548163471580_0.7902211666137078","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"jspdf-autotable","version":"3.0.5","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"ea2bfa44fddfc1c9d73e00ff4bceec76e27a81e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.5.tgz","fileCount":56,"integrity":"sha512-plDXr49iaTbfQI+fFlQsSEdmSNCzlNzvKB28ggivsJMVu/ATR4hS51RT1/NaGhkqIGIfkpUnq3GwgCERqdnYPA==","signatures":[{"sig":"MEQCIARGVt7O0FCG97RBD3+YqprswdpL5gBEZJmhJ94d82eCAiA9Z4w5hOfkAZF6J2R9jGHN6ZZrRH+T87UGsvxwlQv0ZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4040783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUMsGCRA9TVsSAnZWagAAGgkP+wS0d0NKcBqETsr7p1Sv\nguKAIYMDbQpFcHnx2sDliTYE7f/kg0yV4SYaLGXissmlhRzZ1KAFJ7EJwfoW\nEgKYwhqyxfBy9hl51Ya6WzBKr12r/8usu8G0o8VnzX4WvzpzuzNANGQ0HFcF\nz4TACS6cjwqY/IFEM/pJ5KUEGZbZxHZL3hUaaiIT2KnHbJg/d/qlPpgSqYUY\nh/GxYC0yu6djp00X7z8LqKypjy2C9kSoEPx3rxFVgL6MGu0A0hzNzyKDvA/I\nHd3ipY4TIe9EcMt3EOqtCLLyaUONgXFLhIvsVtayY8QWzhHWXfY1RuzgaGP7\nCamKG+i9Y6WViIBRlsP1nhPwBEB3FdzIcy0PA1HFrQTV021elQi3NWySuiZ2\ncKMJAMXimrW0xAluhcK8/1GekLVnL8jCv54RQycMtfuf2JMLbArC6qLfn1gF\nU8xVKvEQJanfoSHgrkMgWlD/NatI9TtTnv7RjIvuPhUzTVOboMmEtVvzvkvp\noZdWjD/6FDqGx5A2f8hRzj0n4zwZjOv0w/m/K980atGW6wTTf4JBzVroAYo5\nk3kuhKW577YycJrhGqU7PgbmcjrvOSZT3GRsfejeah4TjjBsOgXSRg1P9bBi\nQTcLoqPXGMVOgUAUFERQd4V/I4k9Xqgof1Cy3olb7DbIrDkTPnGMsaG+npsD\n4/It\r\n=tkBe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"daede842bfb3356d25f2096157263c7b5f8e4e41","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.2.4","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.5_1548798726137_0.7232833181653737","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"jspdf-autotable","version":"3.0.6","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.6","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"1bec0583536739827764c90da3e510262f223c65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.6.tgz","fileCount":56,"integrity":"sha512-o7mPJu9Htx4YmzUCh1v//3FuOszWss5j/+Ml290AU9xzdiU8BF7w3ZT8otKRM+SK8t979h5vu8I+lXWBxR4XxQ==","signatures":[{"sig":"MEUCIBfA2RURv4bnn3nlx46SOsGUeGziekPZpcwV7AgO7x6KAiEAi4kBXmBWmvynm4cfZ+QjYY8G7C2UEICW8A7I8sBJkAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4039060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVg96CRA9TVsSAnZWagAAhIQP/06uw5vuP/89fdZZYwl3\ns+tvq1tiE5GG8b9lMslWSmb9XBSxh3oPPrsVmG0sfnl/CpmFKwG8QDliwSKm\nUbwpR+INCau9XDg1y8F/w8DEN7YW+RtCLRAI9yn+ix+/Ox1kD6FM1Pc3DPlY\nIHR7fLqBOhediCz8LfF+ATcy3ntd8DV2+B2FAEksCi49sFdzZtQTWBoVFJhs\nHgE9ndEDXok9Wef/KOQqCoci7zCrSJVhQQ+seYGQ7h70PmVFLie6ntiulGz/\n1xymRjxcLnip2/0G+FfxMjQWTPS5C6UvxOdRzNf+E8dXIG7zWLBCZLw9Rayr\nybXUPmEYEUBa1LvKMG3ENURDWqij3ImIQwGEolTf4vcSQbC8vxsFerfYlYbf\nzgNyZ/1oTwP7HjEQFCRRUP/GMsrnYTLlKF5EAu0CBkr6Bxiff5nTTOqSAtEO\nSJSKEZD4NEAqFI8GBELeH2UCEgAlmQigtXbx2dIWzXIM6L3XM3LthSHexYWJ\nr+rzl14jYcpFP/5Qs9ght1K0FLi74C80cr1/3nNu3SklmzSNNPbqd8rt9DUC\nbK+DuUdVGtGGcXn+ZaFkn/Y/gtPwYIFVVGUyHrtiq9VSF350ItZNN6bfDe79\nj5qsABeyLcm6gSw4agNpBdor2gU6zaFM3f3EN6rtZ8zN7dy28nU3P9x0cQ5X\nASlR\r\n=+I7f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"384caa39af6afa4681c63aa2d7f1e4b141698558","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.2.4","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.6_1549143929619_0.010676179892683324","host":"s3://npm-registry-packages"}},"3.0.7":{"name":"jspdf-autotable","version":"3.0.7","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.7","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"685dec7ec64cb5d01e7cc3db4d67b2dfb885456f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.7.tgz","fileCount":56,"integrity":"sha512-huRTMNOACElYmmrN0noPFaxQteYFU43V8ktsffUTHowS3iVmXSAIBDzwPHQQ/O/rVtGWrEm3bR9JxfJf7kFZIA==","signatures":[{"sig":"MEUCIQDeec/Z1UXPa8c/A6bO+Q+r2QzknVpwgJmQ+MWd9LPksgIgJWLaQPPbhP4xG82KQu3xE62fbpzIHaqPVbotwoUbkmI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4039392,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVhhuCRA9TVsSAnZWagAA3hcP/1w4jerfzdX52AxqpfkQ\nQCm6eVZfosuwxnEzn8qUx12fd/v3JrSFISuMbJ6gPv7CtQzdqR8HQiGnQ6Sg\nrmmu5/TKV8s+VtNnpaxzYJ4KwsEVnjQ5iQA00zDX7McClFSVmhgphiUncEra\nenN5WfCmIqyx8VEMRDMeMCZJgqfEf0sFTURqtCMrrARyC0ynmuqNCtDFVVhY\nRT+5I+qYSmf5nfsJyDCoCIEwVYZzGJEqGhTmtOIHJyOAK5gCYx6MrQ8VsNlu\nwfD24jS74/LwAxQKgabPiz/iFxYBLlxq4X6jiP658M7ttZ98drOaKDFq12L4\nIxW4m2Vw+vQyTREOBuUTMbwYnZPqBjicnxxiyMUn/iEP9MdrXadGEzpkyiuM\nhOKjYbmT566SyJel4iAba2Z68B+HOrH6QSX4BBziU1Yw3tZ9Kdj9OaAhxe5M\njXLGjuo+61fFXDriyzdcgwdJZ6Yl1Bh+xtQXo4YNtCn5Ht8gVDnCmV5Kx0EZ\nHeL7DeqjgoUrP+ZeE3DIXap/IlB8NuaGfHLyDuxZgYIEBlFYssWHzAboOAPK\nth2A+Eo2+4di1ZsI1Kdj6WiOsZrAjyAKSDCH+nfmYS7kv325uHbFLKt0tR5P\nQxwMWlR3xftaiuui+KUDIJEqLE8TTkRv6HMIKCWtJ5Zm1E/JGIdI93XpKsVP\nj8ib\r\n=NALC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"91b02636931ed786d45ca9ce95d199d3e879e767","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.2.4","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.7_1549146222030_0.9195338152350001","host":"s3://npm-registry-packages"}},"3.0.8":{"name":"jspdf-autotable","version":"3.0.8","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.8","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"af946d90816a8b58927803bcddbe7b8b82786a69","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.8.tgz","fileCount":58,"integrity":"sha512-RbCQJ2kk/Ob9gnNS1MZTecsl9V9aUm5MeQ6Sl6evcVaHgfg4BcSHKGMlCgfLvEZWJxQ/lJU1VZNwr4BobtvT7w==","signatures":[{"sig":"MEUCIG2w1fEDC9PVIc6e1gwlYkCYk9b4PvFRiyRtEwV7HyIGAiEA9XyX1fkmPqlOewAmIbYGqVCvp//3IpFvEEsZSTFclSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5036148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVkwRCRA9TVsSAnZWagAA8ggP/0DHdDZJAss1gM9ZB9v4\n19dT7kKmR189pig1lIbO+WbupUj3Taq5h9MLTLsHt0U8v60tV1RhS9esLo8z\nwVhUKzxbpAlfE82gbd/hjcwjR97EJrT1rqP0MohiJxGNfa5wDRuh3iUiWrlt\n4HBhp5V4ur19RnZQDZbURqlf4wVFWz/wDl90rmVUb0yAObri+9OqZUtu/PSv\ntv1Bm2rbTCHghD1RFdskxRq2nx3FzSKSUP4shbG5lBncPqAaEm3tPGcaEOys\n37pFNkz/rTZ578za5B8H43EqSUQP/VjCxEIWsrQ8gSVpvoEiPYn2oDiGHlPQ\n9rmShvaGCQssAeTMaWe0TvgdHe6VQWYDNq7nUTXbpfucQQGrD1s+RNPIYDdV\n6m5m312ajbkKFNRrlq7tDOyJIPOow+76HUI51DQhGlsOg9Txlv+IOWFF0SPA\n/zTnqFYUsfZpM8zW+d6MhBgvuSVy3QS3IzLNVl7K15QzEAjG6q8wca9EGApy\nRSgN0zRXx4o6O3N+cHJhEn51BaK0Sa+wsuEmJwbUVhb3h4xqHhtqx4kMduiB\nvZ3T/rSl5ZxEkBkAtIB7hxPFR8bosvx0UTFb/1HOnmHXTQlGG8c6wHdMe3Co\nfCv8oWzOBeKeEUulkJD+sP+OO+vt05ZGA2adBvbVd0VOr/lHuZcN6/Rpbwaf\nDIkI\r\n=Taii\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"c4c6ad3cc77c5429339145a49a9d0122598c7a0a","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.2.4","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.8_1549159440682_0.3137145190786941","host":"s3://npm-registry-packages"}},"3.0.9":{"name":"jspdf-autotable","version":"3.0.9","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.9","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e2be14c25508dc82ca1d0ce9c09291238cee7a46","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.9.tgz","fileCount":58,"integrity":"sha512-jS7hnBh+X6s4SeqB1Q2pOH7H0cAhCTNztkoPWno4w7EkiFveI0XDEZjxE++BnTts05Us3/KlTMIo1ID3Cv8XOQ==","signatures":[{"sig":"MEYCIQDwybGezb235sO14hQ1J0a+gojFPwmLuhfoAG/nLJvU2wIhAOSmtdKKMF6k1VkioajK0qZKibBjIyjXrCpDiYxtzQMR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5038403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVuduCRA9TVsSAnZWagAAhegP/0gSASzLD0+Yb5+gWLYB\nxMPuQrILRhhNU900ktYF8FI8xkiINRvkxBMTdhtpH6qPdDtwgrZS05FSgFjn\nN53WGws0RZAydYbh2weowJSEmPmlPtL2ZW0iDqpqVS68q1hPd0DSIbLSAFW9\nrB7ofAQUTqQasUfYeOxEgv8Qlf6Ali+lM+DGK+9Z8rWq+ea371i04x1T329g\nwzXiJ+xKxFdhdIDoO9c+dgMleEA4lEPkzOQ0jCeOkX7pjbx2jSl4tMi9wupV\nm8eiSLK02RSu8ZH4deaaCWKnXV01imd/YS5xRrqUvTYM0ejmQlgdmAU3QSEn\nX6iK0eFE4dpQJRROAmSsYjHLEDlCoZY1FmANuiEB3/iRoAciOQEKHWjuTItG\n6c60isCGEF3mLicTQr3eWUE7Mk7RvAHalQDe3YqM8kPL8/bO5wCYv8+eA8gB\nIE389UIx4ETcpiV/2jJbgjcv0UHezT38PnWEhDDW3H+OuV8XlM8HZpF9Bmt6\nn8RWFcKyaRu51LTfCZmxQv/cXlHevR7A82ENXI0kwDoiuHol/hqLExEuTo1P\nRF/mpj8LeId6AO9M1JcsqUpNAbieXP3NDBSq9MTmhOSbcjBbWpgsnbb0sJC9\nfwQ7g3+mG6zAomes+GX6InscRbfSsFoFvHLE4ZAl6qXo+AsfEP+Jvdzvwiuw\nY3GG\r\n=xJxX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"fab586b21111b2aaff769664e59f378a714b26c9","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm test && npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.3.1","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.9_1549199213829_0.6945250242286389","host":"s3://npm-registry-packages"}},"3.0.10":{"name":"jspdf-autotable","version":"3.0.10","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.10","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3e673b739068e2303f368d87b6fcc847b494c978","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.10.tgz","fileCount":58,"integrity":"sha512-7lbgIUFJrwYQ9phk+qIv+paDgCudlYTqu5o66Kdm4SX4WQFV9cCeOGFfCMZ4Ka4ePDT+nUXL/Mn8L4+Npz2mng==","signatures":[{"sig":"MEYCIQCroG8GllckNJQnx9w6w0hKy3MEag1LEuJUeeXoceuZxAIhANhPC0dEo6GiyOYQA9WZ4DIq4Pp83vjceF3menPJB70Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5038395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWXFACRA9TVsSAnZWagAA2n4QAJWCrLU25NnqgpLM+n0D\nRw3+ORSuwLUp6s4/gxmYlrWZQTisp/uY5T0EW2bS1FI7lNEA0/2CPE8GF6Qz\n447/NOmlfpe4JJMVGv89wPe7PDvYAOLa+mWgAKljlP/wnK7VOgIivoVw+PmY\n/vyGyu8l+xwBjzxdUki5udlrFo9zPF73y00KDO6MI5KNQ7IJUKBFruxV7KX+\nu5LugmsZTqxwy1Ksq6P6AIO2zUIn2Q7GFlE5M/p10yL29FhRtHWFhN9iMGBT\nVfqQFKwE6rReH+T7PNqH6H/yPooMgWpV5lW5t3WoKhp6GXB4/QiPLXU7CBaZ\nU6qa0Z6Gm+Mz0v0205BPE2wx0XfA+0j0ZF3k8j4jKojeyu5UBb69wQgrvzsJ\n7o7PC2Xzs5u2+vsghp2/HTyx+/2zfXAGlbHO2Nz3GkC1KXNIcjQ/A1DVfH7K\nfmxAQLdhHoE4flF4mOtt5ENjqG0CiOqsy1E6yovTe8Q841MOeJiifY+QLCvH\nvtBO7hBAPXdYrZDHL9B4fRO+QX9V1WsHkNt8LI1IFzExe4FT+iS9bQAYuGwN\nxEn595hQVU3+BuWrWvbJw9M0NpPwlPToWQmYcNuhv6ntHnavpAd86lhsI99k\nwE60gH+q7PwdG3APJEKMtdHJIJRWumRtRLjCqcN59l78I75jC4Bu8jnjBHjz\n1vLl\r\n=zufU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"13064c4c701166195573545e1f307b1d4ce1c733","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm test && npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.3.1","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.10_1549365567805_0.7582220841840657","host":"s3://npm-registry-packages"}},"3.0.11":{"name":"jspdf-autotable","version":"3.0.11","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.11","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"d6d013c12e7ffb66e1e5c4932532a9c8250cec5b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.11.tgz","fileCount":5,"integrity":"sha512-tSzm9i7ejn6yI+VlOUIuy/JUhzKuM5GSDiHc9EUVYh9ecCMELUmfBIpstycXJRCTlmOM7Ss2OieFYrsckieuSw==","signatures":[{"sig":"MEUCIHxHPh/i3SMGAa8xSfSa3/cNQ1O6MnDcYcHQsDFFoENFAiEAgmNbtY1bKBvxmEXAnP5Krlre7N0JdjT63gnMeEbnvhs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfmJNCRA9TVsSAnZWagAAPeMQAKNH7MVUH9M/B5sVtSz3\nbprKNQSwxT4++1tn+lbi3bP+KZ/LjomUcvRpJJiE7Pk3kcujHLnDPY51XNQe\nhgcJYV0JxPoskZsk3b4/3axIudNadsesz0Oas+Vb3nyveOg+jfmKezi6BJWM\nF/TzGby1FEXIzs4znO5+f6CXxOOaCGBFnl7+HK166QjdrRXT0yd0us/K9wjP\nTIEJ1N24qC0QSswTss4VKnAjOH+DoNq0NK7qhWDCebdyRwfN8WM1A/OSIN8H\nJmM5jbbfOdkDfC6UbjgOQRDyfucT8Pdyf/aSeuYYIrVfqMylWu0Efdrvsg9d\n49h6aBansdnQLKLzqfsZ9oTtNxZuyXDl+95HiGtbbiwHXs9/IrXvsUtMHeUE\niDIkCbZ0h2ZYoPOtZLraQLeKspjPuoAhgLdGOv9TB7LzU2TgmGi1agHOQ+E2\nCwrd7SRYBpjkVNk74Pv0AH1oIHa8cYK2Sy+O/SIFcS1gzCi0nfivIMpnyWd4\nylMf5Gc+FFE78ns2zGrOGzO25xdft3XdUQRwSaO5+LLoHMdJOM4ydF9Nx0jE\n1k7dCk1mkZ+bPxm5PeYMnQ5b1UEYkCq1sd+SIGYv+MFG/oiVKgaXRtVFPl7x\nuEx9wDQ7R47bSvdbpIrB+2kYIrkSa9YFD0pj03LumYZpU92Z+3XScogRMP5x\nGBPF\r\n=zJTW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"27116832332a4fb65f796cd581e6f8044694d651","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted && npm i","hosted":"git checkout gh-pages && npm run build && git add -A && git commit -m \"Updated to latest version\" && git push && git checkout master && git clean -f -d","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm test && npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.3.1","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.11_1551786572464_0.781443601087165","host":"s3://npm-registry-packages"}},"3.0.12":{"name":"jspdf-autotable","version":"3.0.12","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.12","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable/","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"9c90278d8346fccc564528e4ec1245d7a9d9b61f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.12.tgz","fileCount":5,"integrity":"sha512-iijEYFi+25u8Ys1Aw3akdWEKZzuUfAsAZOOdsmOaqEHa/t/WTq067xGC0kG4RIAwMXJWppuAPlYBo1J3q4Wjwg==","signatures":[{"sig":"MEUCIEKN/SBB0Y38QOaTq8b7X2ysoY6zRzPq2f0u8u7Fbki4AiEAgeNXzgyEHgadqgbnLqf1nYzAxabzuj27BTL+Lq4FlPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfmZgCRA9TVsSAnZWagAANdAP/08eggMSM6PxOsH/R1Jk\nYyWEfAhNmHMJLRXUPiLAnTuXfrX+2Pj7D+/Ze0wZ22G69WGcG3OYKBZAOG33\nXym7S8tz7PVJU/UI98Mi0APaLAwICusoFeod8tJDaUc/q/+9rCQbgqIcrDlu\nvPrrX4QtB/E82oPus5QmQDC0i5bBrcBa57WyWOui2NHGt9Gmu9DQy+LgKepE\nCiwQ+G43hvI6V+ecegsx2g10UyXUs6/1eHwH9yAOYRySbHdQekkXCyeoNF17\n8pKccZ9duDyjAgP5LIEofaF1mvE7h+vdYP3bnTXuuVwsM554bIF6Y5ohXtM2\ny787hQvy/FQSmy6lnU0N561GEHr2ulHOeXNg+z+XFSrC0gMNuwNWUlb10YHU\ni92fkGKOXd+Uo8tlu6fj1CIa5k3ek3r0ZXJLakU3cbKXEKZkS+IAoMOrCM9X\n9Uh7PoQGq1si0GzzpeFm2j1eWH4tMs36z9x4JioFJAWfZRjr2PJKTDkGQtYq\nd+w10ZkfB035EISS5eAmJHcWmKWB9VUyWy4K0JfEM2ZQ8FPzco0eWag6AfHr\n5FbJCHySo8LvJBeQXEceMHfU7F03CQogM1w25uBE3AJxjdAmDjsP2qPtSbva\n7+9b9QcllFzGdJgOhc2Q1hHF2G96XCt76NohDU5t1QYvJqgH0ZU3Sb2Y0lIn\nJqtF\r\n=nFiM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"40a6c66733f2d7f947caa056ca6a20d7bab13526","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push && git push --tags && npm publish && npm run hosted","hosted":"git push origin master:gh-pages -f","copyLib":"cp ./node_modules/jspdf/dist/jspdf.debug.js ./examples/libs/jspdf.debug.js && cp ./dist/jspdf.plugin.autotable.js ./examples/libs/jspdf.plugin.autotable.js","version":"npm test && npm run build && npm run copyLib && git add -A dist && git add -A examples && git add README.md"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.3.1","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.12_1551787615571_0.11514557632611244","host":"s3://npm-registry-packages"}},"3.0.13":{"name":"jspdf-autotable","version":"3.0.13","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.0.13","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"eff4801fe7418148833c2fa98e55e1276605519b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.0.13.tgz","fileCount":5,"integrity":"sha512-DWtnmwIomZJZZmRqNcVy4RjHlOFlq3siHkrpKM6loFgCEmcEjdzRnbSTY0X7n8cT2OR8U5kuXaQafyHSXokRlg==","signatures":[{"sig":"MEYCIQDDj08Y7M4WZVT2jAFtPvz3PswUGN6Sr+U8iqdsq99rfwIhAKqMSYsHMepBNW0kFo2CW01AzibSCz+F9+NHaSfNRjyf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfmjUCRA9TVsSAnZWagAA14cP/1Pl0jEYjR9w0y7rFKvh\nU9zsJnQscjtS54r+nLJIC6gSWe4VQw+C7r5ev7sVvcTpgiwzwTMKGAvVfv/i\n6H3qZ1RyzUt/l2kafZ+68f915r6eQMO9+pty7PCoChKPOp4sBX1qYK6KcHx+\nDd7YwhUolJQ8s7AjjKy+CmpegvBUEgah/Ft5VUx6pLDIOMtyELY5BiyyHTsn\nwxymYoTnI6fO5oIdSc4NSqCc9IIzEekeVXER9gKZsYPdsTf0Go++pkpXNyU/\nbhrD1CNhIv+zvuHNN39t3BZ6cUs6VsItGBCJ+W/mtbuAjtFICt5t6Z5Fs0fR\nrhEMjaHBqIxCQWkjVDShFbJu+jqll6nWGbClgXth3u/lq6gXLsJNzywV42YE\nUKwhejoZJcLL4VFxSQw1p9sPQku1Z+Kx0dJEUi6BLaS749BCCOnjz+OcyNDM\nilb9Iz8fMwNIG+7nf38Bg3mWQJhMAXdUVlMzBWuq3Axs7nClyJdwdREzK82O\nIi3wMNZWI4jZnR6B/T86sXSIbOT4LeMbSKIjrVMMdy2xSgraR3BDT/QbegLn\nqGUIL9ZHUMsd2iqW8tgAcHeL1e2ZbK/D55Crrir2VSjvmEZP+FWiP/kwhq7N\nyafEEO/rCVwObL3KMFMUrKZ/E72yOiUjeKMELf5o28QNfMHl01V5k4dD6yXN\nSAMH\r\n=wayi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","gitHead":"70238bc24d8f61ecef44fb6a860518ae1323f4da","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production","start":"webpack-dev-server -d --open","deploy":"git push --follow-tags && npm publish && git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"1.5.3","mocha":"5.2.0","ts-node":"8.0.2","typedoc":"0.14.2","webpack":"4.29.0","ts-loader":"5.3.3","typescript":"3.3.1","webpack-cli":"3.2.1","mock-browser":"0.92.14","mock-require":"3.0.3","object-assign":"4.1.1","object.entries":"1.1.0","webpack-dev-server":"3.1.14","@webpack-cli/migrate":"0.1.3","uglifyjs-webpack-plugin":"2.1.1"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.0.13_1551788243611_0.0015842555172242978","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"jspdf-autotable","version":"3.1.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.1.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"16a8890dc5e1155a5273d5de382240d470e01bf6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.1.0.tgz","fileCount":6,"integrity":"sha512-TYlcSh7qQ/pxS/IzXkGnWdKx07ljNqDcynwIqtPdgPftwRGW619CxIih8t7cVL/xW4jdlUNU97QiL0CO/bCNgQ==","signatures":[{"sig":"MEQCICgQczjGOYs99Wau0mHh9+c9aYRWMg8xEugJTKD6RxUGAiByJjprwUFzG1ZPTHkvexT1IWH1Bi6YGwBd+McMzQS98A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcl2pMCRA9TVsSAnZWagAAyb0P/2BweGchID0FelIxRvZH\n6eFOBjmwQzs5MVk4lRuPUq12eBn2TC9MC/gnqM/DNBQ1tqrK1vqkVcrZ3+Cy\nRTv9kSaV/VlRqoRDbufoK7VwRiCUrcEcN9vpu4wCYULXS0ACbxneOvCcCaZh\nmjXtV1NTgEfsYg9IFp4jAcHoW01U5aG30JqYb2Awui2FjA84zoOewDo/1GT6\njKDxIjo6iMYM2Z8MVzHsoikJra9ZJTcVHe5L6KicXAiea4+Vtl/n1pn3FlQ4\nq8uOR9HbwnZifjvM/Pgjv2wpc8PZSMzptV+b0oKdOagbxJhuutKBxUxwyR6H\n2Q2AigLu2hCyKsYVc82TJgEpDvGMyaIUgF7S5nVLwlc76NWmwc8BQQa/vwSZ\nIv+GsjHJs7KnmokICN7ZmRZ/oHXde4EHfGTPCVWJasMa0JRHnVh2ZIpO8clq\nfdGoc55pQPGuvC8Uca0HHnHF0KWGgP/uibf7rTVpZREVlg8ecW8l7FkuQsj8\nSMx7Rb2B2PckIrmQYLWHBSjXRinZl5WpuM7brinDIX+s+HbvV7LBEtwek7GH\nXsuh1HECatEbcRcFvWRC+SSB3Dp2dnz2NDtwn7yuV6b1mU1/43SezgJHk90j\nlZWUS8RbzGrVC6U+HlZ7iraUx6RRx1+Qda0Le9wEyf9AfsugsvQuzd391LQc\nymS3\r\n=kZ3q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"6f6c77b705e69082a098798b582973fa95247389","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.0.2","ts-node":"^8.0.3","typedoc":"^0.14.2","webpack":"^4.29.6","ts-loader":"^5.3.3","typescript":"^3.3.4000","webpack-cli":"^3.3.0","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.2.1","@webpack-cli/migrate":"^0.1.5","dts-bundle-generator":"^2.1.0","uglifyjs-webpack-plugin":"^2.1.2"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.1.0_1553427019710_0.6009491771161217","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"jspdf-autotable","version":"3.1.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.1.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"6bc7856c6bacec778eaa6f13323faec9b39c97ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.1.1.tgz","fileCount":6,"integrity":"sha512-TT7vB0NUPH0wyPhPA4BpEW+vhJ+0YcYNA5DnrTnioxZs7xBZZpGhqW6s1qsp0DWBZBPpBN6Rkv0nP19lRi6faw==","signatures":[{"sig":"MEYCIQDTUIPi8Fa0/n77toJs4MF9A/EcX6S6Wtls8Q5R/U1ZogIhAKxujTcNSaakvGoHoaVPHUl3W1BLeYLKr+5YtZRwdSM7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcp0USCRA9TVsSAnZWagAAGZAP/3+zib5gnDrf9kaBIpsh\nkbxpkAhB8LgXJ2+JXDUoPoUUZoR252+gJmXeiqTBhs24dQHgkLn2xMGLp6zJ\nEwCMdT5dBgTq62yd1M2boTE8ZVvMY8C55ha7F/g5+g0uz9NaZ5MgvY4C8ZVc\nVuKID3Le0wZPdl+LTtutleQjBK7L2NFLbeUM1RtgVw0ViRT6N5mZmGtl2t7S\n8idApkIdoEHB5/pBybOZ4y382+Q2ejWaP8aoQNE08hvv369MMmUZ78NdAE1u\n0YIMP9xTfdCRiWzIAyv3v9C3scU7zXxeeucsVwRqsQetfIrTcIfdlolmyeXZ\nFD0jny8AySEbXLN+oHOz2B1PjzYi6YWz+370YyBUT04sgAx+PpU8/ZLUVr/W\nTP+VWVutVMFuMlMbbpYMm0SK3T3HNX93uEj3Gq8Jsov/+D3CVqRu3V3Q5Ku2\nFi0IC6XefxkgEpeo4iQuMrEd15FUxmgjrDNbOpy6hEFAN57n2MgKbjeFvyWh\n2nkAH6KRZVbzSLkM66PGAT6sUQ2AkijlQqf8GIR8aB+mQzW08ck3qAMPRmpx\nIiFQRZ499kulWgGIp6FeZsNFk8W7/x9Bfnh/cSoLUNEloJitPaqrHO+K8Shy\narRo6SRMNuqlhujZNLHlzBYxT0AOhQy5KNcLwG0uWoS+BKUKGLkPd6r4erSz\nshsj\r\n=cIBz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"d271723f09cd774d38fbb6d5df3371295feed3c5","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.4.1","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.0.2","ts-node":"^8.0.3","typedoc":"^0.14.2","webpack":"^4.29.6","ts-loader":"^5.3.3","typescript":"^3.4.1","webpack-cli":"^3.3.0","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.2.1","@webpack-cli/migrate":"^0.1.5","dts-bundle-generator":"^2.1.0","uglifyjs-webpack-plugin":"^2.1.2"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.1.1_1554466066214_0.7811966274855178","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"jspdf-autotable","version":"3.1.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.1.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"367b1f3d59582a769c89ad08eebb1989d91b5aa9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.1.2.tgz","fileCount":6,"integrity":"sha512-QYtfZWSaFnbOhWNZ2UPoM5azLx9tbJdiUKlruluKgU62t5bcn6A4Tc4CJn08kdaiVZECL+08fqCCZkqsD+z7rA==","signatures":[{"sig":"MEUCICwxXMbRXF34DbTNuLvdIlQkFyNveTjq3upK965ck69iAiEA/TDgqBXvvF304Pt7sX5yf+4JlcgE/P1A0krX7o1vUl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":117726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKEAzCRA9TVsSAnZWagAAE48QAI2gvuU66QqASO1uEe7h\n4Bamu3jZ00ITHR2HWjLr9KNvi4mdYSY9Ci/E50QeGNrPkvO6m0CY3Vw4+4vj\n1of/4vBs9UCPNohdj8kBG6vnhlNonQquNQ8lOUpV+A8PnOF8GiNzUAm5rhiX\n393rqYkfXIxCH/ghMjtdh0+UCwrJNqWg9Xubs1A1uavVGna0R23COSqg1MSE\nhf/bg+rD8CnnYWtLXzYcNXox+/mOoWyKtzPwlSI0MwGqrHA2dZKhT4LDgLVZ\n6nftJMpQOogIhNP2tA6ZRpPgD5iH6E5d9U9IN5RDxVY4BiKxlOARqkrTy+So\ntGbD6bk2dGwQ+QRJ3bj6Mr+xzOcXZ81dvBQmlYRBy1yPJVWaqU5JqPZZtaH0\nRicIdmKodMYP+/O6DLzO8Wr36PQIc7Z82Ru0T5TXoQrKeqVMIW42M7PfDlN4\n7/W62+mnBUA288w7gogRwxdjwVAvMg2/5XLKUSSU6lNHwvnXmDe/Be5CPmf7\nAyjUOq1Z79erqH2lsiTb7+zPFU+1EukpwAywUGSYbVaffiW5LuY7IScbiwnY\nuRZXP0dJ67ogXrVFuAybkorGX2DbDF1OFuQdHpZXhuVj+SIzHFajH/04JaYI\ndtmlXGs1m23BNMcTdglOdeUsoN+8NctczGblE6qQPFaJbfy37ZHhXzEmOGEu\nxvyi\r\n=XQui\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c2f07a2e0dd6cbfc2d6748501709e53b04b4de17","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.1.4","ts-node":"^8.3.0","typedoc":"^0.14.2","webpack":"^4.35.3","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.5","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.1.3"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.1.2_1562918962581_0.8030939200196214","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"jspdf-autotable","version":"3.1.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.1.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"4e7edc53f3708e3f74e35eb3e369da03a9254615","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.1.3.tgz","fileCount":6,"integrity":"sha512-GiYgJsERRTh0kFK2YZAnCDgsLYE3wQ8aaHNn0o13m5QOsJjCwDPGbnGx5tT8QbdCkO/m7oinG8G5DjllEh4K5w==","signatures":[{"sig":"MEUCIQDtuq3F5pZIkoTU63K4eXzIjzGaWSSwHzteVTv2GIhufAIgOKR0stAERCVPIi5RKkVWiL7vnxbgcfE8YfpLJ8eCS1U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118607,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdK4L+CRA9TVsSAnZWagAA298P/iI5X4qxa8rWlZSa7z/g\nNNPWD6brfeDKPkJBc32begJh9XqY3zZQ1TvlIaYyT71eBFvsueqrwwj6xghP\nHDtd9o2kPHpk4bwmlYl3IMY21WV5OW4hB0yFcsZVlgqGLimoNN8Gt3UIHvrU\nwQwQEUCUNomZRjYuE8/8y2clMaDaNAGPWsFrFaKrESGgYc8xIdm4L55Pp2VL\n/cB7m8rELctl4yb5YvT56Yqnu7WNSf2dA4KXhseXpwr8E4AzhGeQbC2c7viL\nTitS2NsDosBNhx0z5Y9z1qaMDHoJmXse1+DUvFZ57fmm+KX84UZQwpf57qnU\nH1qzpx8tG52yXdKb83Xoly6LcGFYJ6oiXe5bPou38OMmVz0ZArfKcFMXdfEI\nohafDFr6K8UnVrguccRLlU3a7CmieYyUEZbJDGA1jNyZBV3R4Vqb0UZ0nJcl\nwg9/kbdYgEtysQpAlBZKxw7QpbjFgfgK83G1nrVaKawqjti33NhOdIIciK6A\nW/PPVmCoUnul6yMJ9PZ1XVbou4dHX+b2mCOuYKVveJXsCu09qcXa9agNQtLU\nVHAyarcgKAm/GD+aWimZ42WASWn0KwGG9xZgFvvr+laxLtzEBhnOdEw0CuUE\nHha4FGEmYzZu0DS4k3k7iaVQyVppGd/pHy+tn2Xo4q3+nrtO5RAx4WWaE731\nquKD\r\n=K7f7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"32157ce985b0a73f9f4525de473d04d59d05d252","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.1.4","ts-node":"^8.3.0","typedoc":"^0.14.2","webpack":"^4.35.3","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.5","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.1.3"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.1.3_1563132669734_0.17563582988438808","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"jspdf-autotable","version":"3.1.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.1.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0e45d75f73a6db3eb436bcba961cd361b9ea16e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.1.4.tgz","fileCount":6,"integrity":"sha512-FhYRNq50xPRY50pis74TOyvJ2Yl2OSg6smFLXqhxGvPB5sO40ojc8ne8hzbswVkG+xQRJaJ0qYAFKYa+pgfclg==","signatures":[{"sig":"MEUCIQD9PgzXB6UIgL+cG6T2OK+ZLKVc3LCJLRGb1UU1WNpdUgIgM7hVti6R1xFqxkgLfCBf5fLWp1Yw4f+5JylYua9YjIY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119623,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRuNDCRA9TVsSAnZWagAApKkP/2KB/+GLzzvPv7rxu9qj\nM97n0P+ov0X8orChQ1cosSe3XSCUOdLByin8mf9dBhcrsguEeHmXo+KpiTnm\nRwfO2uvEXunri018Yrm6cDukjY6gIMmkctyQmuOBmMsd/gSgMGrRssloAsD4\nhMGxntjqQ5K72WYJmDoDNjxcsr+Qc4Xr+UKwEtAh2+XxfLC4UO76GVq2gpcm\nWmBFelD0p2dgJuYlZGhbV8ColA0fnlEVs71eNzHpcrhJgfhiUFwhqenB+Rv9\nNIOwTisbW+qCEcqCLoVN7AsxcJVklm63Yw/ndRZPdmk4QL7T4zfxVojLn12r\nCl7c2caVLjc19cCwVHOXvzoFdisxQnQ//H6p69nWA6Ox7A7SlX51zlnkE+YS\nPSEhK8O5aZyYzwLKjgAH2nzlpzC/+iM7GQL1yjRRzb1qgJyQ0+Kd8+x8KPW4\nyMIIy+V8O9aVXmCTldS5HgtCsgNwflfvt+IEd5YLt6biiwZ50Yw73NHSwsHL\nzmKha+VSglHWrOt1BgXyKolAYPDE2xV+2w/AYpsmwwAYRnAqzBVE169F6DMT\neO1Uy8BX7kTfKlqTiFcb7FjlB3nKZlaYLSiS8H4CVve9UJkH8siZnXuyBMt+\n1JUhFll7Vnv8pifuHdmzW4jLrYJomBO55Jl3aK4bQDGCQc3d79qx75egYNQq\neRlw\r\n=/FaF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"fad55604526f9c5fd770e5069f4ee9c8366f4cb0","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.1.4","ts-node":"^8.3.0","typedoc":"^0.14.2","webpack":"^4.35.3","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.5","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.1.3"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.1.4_1564926787003_0.3507373162045877","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"jspdf-autotable","version":"3.2.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"af995081e3bace4c2ebfe9ea53eefb930c81bc54","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.0.tgz","fileCount":6,"integrity":"sha512-2FEcA9Fqk67BSA7dpniYwriqbfZEM1m11wVuDp9w1bwmctzmFCKfCLwh40k6FhmhZFW7BaEKXA+B5X3vPyWbTw==","signatures":[{"sig":"MEUCIQDj72cnXLJBcX1r7b9N0Uq2fCo4warJdc5Tly3MWCXiKwIgbLjj0CSd2DZyAn5LIi/OQHBwr5Edhy0Ow8iDX8oOGqM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTTGjCRA9TVsSAnZWagAASBMQAKLJgcYGege2IU8LomAg\nWiELkOarfZSAI45dbTy9O6dRKRTDWkWpbmoWBMLcrrNJv/DWvyWXXmCbPfDl\n83/4hzRSqndqbEVx5gtWTwSiBxqkwhvC5ZKvBmUN4Z4VcsZMU+GWOJfPJdaT\nCkNEUUx+k1UTnZDvbFqfEjvN1tg6Iz8NEkUeLmHy7Rbu2TFptNeBtMyC6KC2\nCjsSgJs3zRlFXUbvxktql5ZvPa1h9zxaQpTyOidJcKke3GXeTVnlrWBHLl0+\nFR2gNn61UpHQbrrmxReUYYqDovCzneEFKp6QUgiRavl+POCcdq5o4JqPZg4N\n2yVYwcDN4aEEs8nMQL7q6o71ms661JvRwumsYVyebi2M2Zqlxy/DgTybmhGD\nEv1efTx2AwPd1zcgRXkAzgdQbtM2C/Bx2d/BwxRRZ7YwWCptS9tW+FBczc/l\nhmR1xZcm254fL0rYeYqpLGNiSUj5mBk5c2uVugVtfbS+7hmk+GEjKvxsEanq\nn2mQhqdfMWlQhwZ3xYBpiqa0rhFVJgViAELbekqSanHE1QplCUDCzmksgJXc\nP7j8Tsl42xjvbnGSZUZ146/efIPguu/7IkQKN26vW5ASbOKFIbIgBi3XzMt9\noqcYLU3GAM4dkVzzlpUOZmCtsPEUfj8jNwt32nRKKoe4Q1PSIp2uOgZxK70C\nAXJQ\r\n=BRpN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"b75da0b3ea8d5a5e556f944639848e1e2e84b9d6","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.0","ts-node":"^8.3.0","typedoc":"^0.15.0","webpack":"^4.39.1","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.6","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.0_1565340066317_0.178961129219964","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"jspdf-autotable","version":"3.2.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"00e73e11866bb6327fe80b2cc685296fbae0490a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.1.tgz","fileCount":6,"integrity":"sha512-eysmdbQ+Mi3eb7CJksBfKMuZ7LmU37xBN72+LGj0KW2EEXtDf5E4YmED5vUkq0u2FzdwBK1NjfeYCbMtAaMFvA==","signatures":[{"sig":"MEYCIQCLt6uSmJp5m/ksCvWJbnJRUPIpXlIl8ItxNIv65tZIXgIhAJtTUJzBTrD1AuW5EqzDa/StLEM1zu1HYAfbDoJbbVPi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTTxTCRA9TVsSAnZWagAAXz8P/2rcWPijXzjMFtf02nXD\n90Uo/IRiGYYbSX1DaDD2lhKBEOWYzk5/8XKnpRgyyozAoGaOIkdToERPX1rG\nZyaE5rCH8WKn/MGk5qQeOdTfVqOH70SVubceIeeJdET47Ejx9QGia9GrZGBN\nhZNQMdvIAiyXUpNjxjMGuS8KiGCs7FLnF4WLWNXfVUjPNyP0sOd8F7064sys\nqJTF/CWno4YoKKLYtURrBfuF83VHxwExDMweYiQjhtUK0d3AFYcmb6DhIJod\ndrxB3hN5KiSUVO2/v5hSr6k+WoGLSVpniLv6hAuiyRT97jLQStoGGabtf2cG\nPfvsjcDd35haNy+/EGo9bVrh535EKn72IYybUOGXZ/IJhcrYv/h099U773yW\noLVaGNI/OD57Q7ZKQ0aNvMJYWulPAND3GOmvj42vmTY7W8l6KSikymw0TFkO\n7H61ppeGncK72d0+7RI0aADryIngxIPwYL/oJG0PUscX1HIZnTqfXsMYLrHb\nMhcFLGfzH8jCb7W1QOp/FMhsyaTRU175BezI+KQ2zqAIuXwn9rk9L1nUNkQr\nXPkBy+7vvPpuho0CzcCliLFl9M6L5y2wJxraJJ9GtA05dF+nHjBkHxlv3Oxl\nNz1JnvtotIOhk3T76yDCQyeSW4KtkFnxxvWLITmR39PmCZvdLEs4BkpBAd/d\ndQ0s\r\n=KPdI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"0ff0dc2ec3b751f16c49d826d33fe220aa103855","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.0","ts-node":"^8.3.0","typedoc":"^0.15.0","webpack":"^4.39.1","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.6","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.1_1565342803459_0.479341897784326","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"jspdf-autotable","version":"3.2.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"33e6a15187edc726c4ae97e5cde7426dc7329c53","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.2.tgz","fileCount":6,"integrity":"sha512-h1RwQzEUyCIEBtZGlzq9htBu59gRxoG+yOy6kKLOHCcmqRxYcTAUW8P9e4uBTTMegwVzUvRxCkGsKwi4TF/vIg==","signatures":[{"sig":"MEQCIHj7UgAhRGKd4b8EsMlaidYcj1l+b+fLcCG4wmWGHYDvAiAl14B4pKjF86A0+7fVu5DzVmIgG2gOrIsqiVSn3S2XYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTUQ6CRA9TVsSAnZWagAANcYP/ibof5IyQ651BKrh5V6t\noiWvW+emne6NGq8kIcCcLrs3uH3CPolYpyg5MN4pUXWPPM9G7XRePxuh/6yf\nPAOEWNcO8O8DgcLth1ADLskCQuEzs9sqL5rTPdubo5Em2cq3vcP0xiWkra3O\ndM9afvVoy3xsRSrnd+T0hgG3tJoo7WiRnW1SfoBMnUWMX0c69+aS55nrUhyN\ntKBm/yLFG+N0TQE8EVuIq+b+Fk3NI1r+xwVFo3Ni/8xFdIxQ+EL47rjACWnU\nT1zhuV3Sev5fRXV2I8RcCBG2jwrX77ysMtSkACHQFs1PiokHP0+z8UXeo8Ck\naBKRI3vFt67mDJdkM0LlmkyZvk6aMjwAjRri6qdjV+iBXJJmp1a+M5yR17I0\n3jNdj7botIj5X3Gd90k8LwqEkJm+ecJBCN5lkyLocof41wbz9lTDDqrd7qsr\nf10hEPg5vA1CenVhSvyb6pPefds+yc1XozHDVyrrhfDB8VCJDcXylNrBHsUr\ni+QJIC20DTgC/l1X9ayJEvrfHsw0oBtLKkPmBiog3wCgUmZwzKNR5byWlFn2\nV7h6rZxBGhL1kURD+oQf2PHP4ZNHgrL5REF9ed3fuCUw26T2+W3/Xbesoehh\nI3+UX2OlG8fuBSMFA3BVCePI2IzYgI4wLrY55kCN+sTo9J4TDDvK3ZQiVMU9\nrwRJ\r\n=4arb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"9b19e0e49ddd0f7af9085dc21b54d35046af9a08","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.0","ts-node":"^8.3.0","typedoc":"^0.15.0","webpack":"^4.39.1","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.6","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.2_1565344825956_0.9675003522959666","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"jspdf-autotable","version":"3.2.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"4126a14dfb186ff36e8d4830865a98a57f661af1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.3.tgz","fileCount":6,"integrity":"sha512-JXhf2cOeGNeCh8R/JscR6JzEBkxQClero1M73O5FOl7PbSnkrz7ohYEB+hJl1n4qF6JnUlBqZRTk/f30TcOSQQ==","signatures":[{"sig":"MEQCICfxMxsrYSeWBkiBS/irVK0iI32c2LfZKYq3I5nfWwthAiBpJIpY/duyAiaLofLRFC3IG5pIGWMOxR73ggTqcbMNHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUrpACRA9TVsSAnZWagAApXQP/0MEb57jT4CEcjY4dnnI\nk3MCON5eyFefr1Jy7J4j2T6ftMVa/hnumLP+eERCAG19zP7r3UGE5iiR3toT\n19PM68fiBLcWX1kPXbrGY+unahsSuqCmwMR21hGgYUxnSa1yB/kJ74U0uIDz\nyUOMjmIY3KqurP0Nh/dGDNiX2eDfJHiVmCUaNRb0qJEyac2ByIiU5oMuJ3CX\nsgO0f2S6WN6m4keZfTS2BIv0qxxKr/h8/WP/aoNdCXKGAVfmVX0MK5Z46V9H\n/VgYA4uekoULlTe13Chp+9X3An3rwoFHf866tUfjlTFV2WZngFP4CVJp7J2v\nio9jvdCWC73pqvAYFIPtlt0LslR0loW9Gj//fZgS40tEwTN3tvSRoF84usf7\nv96C+HDpGBl+vc9cd62ITeN1vzVzP5lECay3MwX5KgA8wQLXl0rXdkjDo/tx\nrlXeNYlFnRv3DV8RCRMoVYOjPv00eleKm+S1bhDLdixn1Ihsc/BVvrwmS8Wk\nlA9RXWMJIUnJGdOxOjNaSh4lPxUusECyEAy4C048Alx7SIMQiVnJ5uGg6DOY\n91+J3N7zVWRhkVzozHH0d92tohT7VZr8fkRwXDbIDRdb2nj4/c6sYRGxW6Tj\naqC/mnJhepfe8JnrzjJILS8Hl8ZKjn/o4btDzkgyB7YKLAYvicbZ3S+zAbPq\nWFlm\r\n=YGda\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c0e3169ddcb35ef6aaba139f4e42025ea063ecad","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.0","ts-node":"^8.3.0","typedoc":"^0.15.0","webpack":"^4.39.1","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.6","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.3_1565702719436_0.16356812047468772","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"jspdf-autotable","version":"3.2.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"cf56b4ca191432b25e841fa2d38dc2163fd5b22e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.4.tgz","fileCount":6,"integrity":"sha512-tnrfVyk9CmB2nDnTGcj+adV87viefYNng2FDR0rNvI6ZXj4DjpN4Ja8mqSQ3gav07QXIP9W1klw/PzEXZkwR3g==","signatures":[{"sig":"MEYCIQDbv/dhAgvAqJdfYqnO+JA0LX+cCIDdgBHsVD93rnFQ+gIhAJCAeDspTbBnf2pyzvVxDdKJ51QuyuhwYm7A15a6tnCY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120043,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdU9hQCRA9TVsSAnZWagAAdsYQAIeSi9DzQG4AnmXK0Cvv\nkyknM7mIHI1o8F8TOTpz4cCEXaxi6wmH0nVWFt3zHimYrhX4gCA/EzN+Y4Nm\nl0QSy6kr16vN9tZAsH2mb/FtevbRaaRH7JPYfw2kL3jiFtKbFuo8fmrfAvOv\nfCadgsQY55XJtDv6+GReCkgWLBCfrGM9tAKfAAxwQkVtSjNne8eQaGSjajCe\n7nIsFWDNjMpGArxC29019M+wve9+WVGo37H2stX3MXZMhSrX3L5UgwqGTKtb\nTovxEc78vEYFQNyP3VZgpPexzDnCMq9omKmupfdWcrycm2fgtOMYNmz3L/3W\n9zsiJRGqz6LeX+txwR9oSa3yieSDO3pb2bgHSP4N9AcduE4qp1bgv5d9o6RS\nled4BxWv+A/JZdeiy+HZtk5EeNJ8b0SX5O0r6SKU9otTHVG5XPIRYNEFvo1r\n9tWmhwdDu7dyCmtDzhKJha+GHu1dPuGYwQZDWSMQpgFgsKlLFV9QalOWyd8l\nAq6jGy0lzr9TjLPmEMZoHq5ihhX43Ji/oLG4G0zdrZxaIPogPr4ddCzetDhE\ntxjYMfKMrs99Z1oYYLOTk3ppeKf9Q+J0CB7WvML4Ph549720mKRAikb8rKf1\ngOY0RdS8mWz90aVrbq5ubC7tDzSSj76UOiMtjBEhq4Rb/gmrM2psgbHlpMp3\n/uys\r\n=CYtu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"efd80e4cff845d094b22b25d504d33aa1830d23b","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.0","ts-node":"^8.3.0","typedoc":"^0.15.0","webpack":"^4.39.1","ts-loader":"^6.0.4","typescript":"^3.5.3","webpack-cli":"^3.3.6","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.7.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.1.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.4_1565775952137_0.9814803392275511","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"jspdf-autotable","version":"3.2.5","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3ac86012879c39dd13dfbd01ec066e5e032a6fa9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.5.tgz","fileCount":6,"integrity":"sha512-xVvvO0hYq1fTjcCK1MM8CqO1HRaUMRa0Nf6EcqZGI2YG2h7WpYcb0Pxhu6mC3pS2rEuxC//CbR1uHp8Ckce+vg==","signatures":[{"sig":"MEQCIGCxk1eaw/YYQJT5CPoLOx94PJkO9oy8NVUnkJ1aQxIjAiBQVeKyy8iD1JFfFisAZevIx99CFpHshdfeBy9EmSQWRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmh1yCRA9TVsSAnZWagAA6LAP/1lJeBVt/Nq+VOHxmqzd\nNYCn4kYTS0M8vaGgIkphwU6CZUYtgFrt8ztYmFzSCt+Y6p8920BdMTq7fLik\nPwHnqt313+Yvr3Mh0/SxVD6zqU6sQpw+/7qAJO2X03tuY/6wckjpfLXg7J+B\nYGjxcL+WsWaxbGsb6q/QGqol1axkFovEDyY8+qb8LrvW8RwgxuyoAXJKtBNI\n48Sf1idLCsVcwTdaenfYHp6z4L2ln9URsgxpL40oFRd+oIB7wVGrblwCGUQc\n/nhzzd8ch6eUe6nKPDSpsbfbzrm6j4gTQjf98AUOLq3mFLvNwTUs2HIWK7Dh\nz6aOI1Zjjsn/csMzv2X+dmvLaY32+An/JbQdG70WZgIaYoJ9h6g5s18Uivbj\nmgE/l4SnoY5jqcA8ZqHFsJkiJeu+W92uDG4ilRGqfhcX1vpQwKRVSRad0O/K\nJ3uABtwTwlgUDAZk5mngfnNV+8p43wWDGNeL7KPPCsQLjYGn0YLc8z/7t55P\niZUw26eeuKTTpYF34VRb72SzmsW83mEBKs/p3E2iywrLjnrC3Jf95LB0pAGz\nwuPhkbvG2bG4g3D1YKXl1C1iUzrfANbqBuQTmfScbgcQec/O+Dl0b1YpsYFp\nkcJmjxoq+/u7FLoh5NtNBbBdhzNJBNy6wTzZokA4mjy0oyWTI1uNDd1MKMD/\nWGtx\r\n=iuKU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c10c2adff9eaf6d9abfaa88b661449b063277f0f","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && git push origin master:gh-pages -f && npm publish","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.5_1570381167692_0.6741448620747084","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"jspdf-autotable","version":"3.2.6","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.6","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3edc74bbd4bd0ae2ff5c4785d1fdeb2d8d95aef9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.6.tgz","fileCount":6,"integrity":"sha512-zEQIkdYvbvoz1gm1Y+P62Wc/HsV6jMzPEZQJ+s1HDrzk3obLLzlYGrQf8ngRDtJgxAG4NDtOKP+4IabcgSXnQQ==","signatures":[{"sig":"MEUCIEVNMBFiXJv1F270ekIbnNa3f943pTbe9yBsKT8b2KSnAiEAs34KA9q8/7Eb/sJGNH/jTS0ZoYvb5gTgaNgNKsTNfN4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqj13CRA9TVsSAnZWagAAzxMP/13YNODXibqFvRRv4IPE\n3qGiK92B4jqJM7+mdp68lfr9j4FWs4NAxDO5ywMYqE7nRoOKOtlQp8SBIbGi\n7g4GW686PrkljTpcOXgoZrdnO/8MbNjNGOKWrbf0MBi0+MuJFeQzvq1Kal+h\nO5Yp+nWoviPMjf/giGgMZO4UpLogsWT79wo6PL0LRBFBc9n9VT10gYRmK2zx\nlSIW5artGF/sdgCkkmpc7GrmfTXR3focoiUZOKlYCTVgTDJXaVccwentQCE/\nwmi/BZ3YMdCMV/zbpcBEHgr6EGSRmltJkdesKPpkeDuaongp1sQKgpbrPJyK\nU/RxLJ6y/fk/FHSOxArLQVcMAuj73jPU1WUwg9IEdvewoSQM3rnDguznIurz\n7fGq9twhPZnBLm/G5u6+radP4BTVa/wW1aSgzxjN0SXwSBWOc631LWGmNg0u\nN+zwR3e39Fnru4+dhugqYXDEI9DoYMU5+KPHZlANiJcPhk2iNMRmMQRORqb+\nQTq50tK2+W9wqgbbAGxMXW5od8r80qcRUXclkACZxNzniu1Ygu8CJOk11TH1\nJ/B5RPi05qXkNNbv2igHpCrfgZ9QLPEOUWLDjRAz5+x2rhcC+Sv4VEEQwx0B\nXe593wDjWkokzEiO+YqGeS2qygPWlmrS9ptCdqllaIFfp6XxX5UUg+5qdYOe\n33Vo\r\n=M/RA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"3addc385820c104ce67fc4a06f7481c5a42e44ba","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.6_1571437942174_0.9177002477440013","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"jspdf-autotable","version":"3.2.7","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.7","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"9f80e374b24b60d39c71dc95e1b6c3e76602fda5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.7.tgz","fileCount":6,"integrity":"sha512-rFxddWBVYstwAJ7yVE3Pvodh8UZo2Adw63Gn98sv6/8AvS1QR2EFfgDkWV5Vo2WrMM9upJ/i/2FzHo8rO34O0g==","signatures":[{"sig":"MEYCIQCisFAPlvxyjpszBGYP5Y7QcwG/VMh6Nw5EUXQUSDF6SgIhAO4yMUyUzjCnSNiWiCFYncuqGsUnuxGszzRowdE9ch9Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":121721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqxAACRA9TVsSAnZWagAAMroP/RWJoPYRAbeiKReTDdN5\nBqbjGkFZVMGxU5dtAbFkLl9daVn8DGJZ+7Jwj1J+TZ80Se6+Y6Vkzkae3sNP\nH/6EqtmPQ85EcjaS0UTp3p6ZavCWgad3ExGMKhCPhPKW9MFS7BAzzbIRHX/5\nIa0CgHK+bHHT7I0ioZTC3+GXRLiZ03W+LLKmg77go8g8mDe8cV8V2IakVBIM\n8m6ioAEXrS+rumaycRb/1lLogRT9xUkxxAVUOUV8d2TNGr5ivs95BU1OcoeJ\nK7otlQYbDEw+mLCeTUohLd3R0MCv2QDuxns4ONFFNM7pKkKMstNm2V0HC9Ui\njA5Q1goQXbwW4+OX0VMKEFROLb9wsspae0lfVfu8D/4Nv9BdIWyjoCfez+or\nRWDIwG6LN1e5AdYQrjofwhRVHiieW1udB6Iv/izI6oHDLqeb8rbb0aJvqmGA\nEGGMtsN84IJ7T0USD2+gHt9Hy8eDmQ3/Yhq435RCJgVQEwhcibB869ZibuAT\n/zRG2BEm1JnxaDxTxOc0FNdQbidsGS276bUNJCL2wH/i5CzMGf74jCLxw0ak\nMWoxwrZ6d44SO1Qj4Bzqsbc4yivTOucgPn6IOf0nHTa9AMLXnvCM2XE3Cdnc\n05/1mI9Chk8tMWQZ4qiglztqml3Y7QLnZObWLeiWNWFZIlwnfG2CRNpBGcwz\nTGzX\r\n=8LaS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c79eea616367534a87bc82557305395865675390","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.7_1571491840087_0.785394015927042","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"jspdf-autotable","version":"3.2.8","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.8","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"985285e531d2d548eba2b012725f67586f283150","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.8.tgz","fileCount":6,"integrity":"sha512-+5Osow1E4u6zpjE/gywdYizflMTdi6mlIShIPN3T/w7uW77g0VcWCYOFKonfk9gjO2VUchsMt/McTFrgZ4MfvQ==","signatures":[{"sig":"MEYCIQDbODYctQ0iYN9cVNFfZJmZe+F68sOukcLTmPIloMT9VAIhAPLtJIxK3+1aTZ7esskc4ENrXASdJ7JE0zrcWG3K2QDO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122225,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrgQKCRA9TVsSAnZWagAAjWEQAKC/7XXdOp962zAQHGj1\nmctYe6+1G0pvPxU3ZjcnY9tHMwNFQmYH6a++4BbXsJLPBsCnEV2Q49YIWiPe\n99GwpMLH0tt469yGdR61OUVzPLMN2y05rNBXzwOEqP13kOusY0lbGh8QGOWk\nCEYllSPABYsxG7qpE4mjFuMg0xQPTLy2w0xNjA0QhcCdBVr75P0+xGh40D5p\nu4DAW4Lt9sJlVG0kmAspNJdaFuGAJERr/9qxYQOE5OvlDbOWLjGVDW6epNwl\n6WM254nVMMOz7iqg2/u91NmHor/lKjUxtlMgC4yvSt3BUaMBjGcYHo4PL+aE\n5/LbS6QsUxP3wV8inAgn/zlxszUyChIZPgTnPjKkU+Y/ezexqpfUB23E/az9\ntfouu/fC6LjWzDhKvq2onAtj63uwyawAAzK9FpLGfHEH919qP2JlpbsLzm3D\niuiCAP7yicbJaFjdJWLYU/SPX+H9K7ldlg9mFc5JR835YGNIVbkmJmHflyvr\n+j1cGIfwK57FafcRQbIWv+2NVyge7TtmJTKMedHAaMmIykiUo+ZCKskSxNKf\nzwEQPyxEEXrdocmiK6jET/bbRHfRSbF6/f+EAKv5T7Pxxk68maz6d6eKIK2X\nqRMasj+b0f/TUl2F6MaNeuDmFYPvjpdqdg3J67TZkVWzHmGmEm7/25oEdXKK\nis3M\r\n=+w4s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c8ba085bcd623a5e0327af625eaabcf646ce1bdb","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.8_1571685385876_0.10327770028182948","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"jspdf-autotable","version":"3.2.9","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.9","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"225d19f2d1925966bb55cff2a873f658ae9b299d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.9.tgz","fileCount":6,"integrity":"sha512-qR52G4ExOsorfCMACdvM8eyJBWr0s0yRYubEUlTG395CxzhuRO3hJS58r/MX6Kj8AQ/SENdBx7buyH7Pf8scOw==","signatures":[{"sig":"MEUCIBjLTL2nrWbcKbHQSbBjnuAx6GUA/WfrkIT/gcjlpwFfAiEAmNRpaEOy6emyTO7/0EDqQAwq7luhtlBb+4AheBXgBj0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122356,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsVe6CRA9TVsSAnZWagAAb/YP+QEflyx8ovaAO4PhcSD2\npXyJlCKG44Gh0arB818c/KviDK4T0oYcgeL/HO+Z+W28lrUV9J9DdTXI8/Bu\njyf1831CGOcK6t+PtG9GS3Q6wfmnljo/RRhIiTCuiTmiWHgxq6Lg/UfXNa17\nzfNixoI1JZVql2zz+f7DTsarIzYX16H3dE3QTjV6SNeCoLfj4LX6S80MAblT\n2R0n3q4lCPa95vvhK0MKpWwcUswQabhx/cIFFgS+G3bTrfFoEHvs9eiStNYM\n/MWWOWeacNqZd6w4xBWAGwLecK0jUhQW7shQV2qqEKBZzQHbGOHKgcxXqNsN\np5NGadCiQA11cXtgBtZKY35FRjyIGuJXgllQFiCj4BgpY3fBIgkPsdkSAuWs\nBtGlUN/yb6GucqZgB8FE1LfcdFHFgRWcEVKcejR85L+4swYDKXC1nXHEdR/v\nSbGtwbYxag2s4/PaqfRjKREaWJF3uMkCQVw+YSwx53OFS8cOQoTV2tcIDg90\nAHbhH74Qdz9KrAHi5Pamnj8HbW4rXGMewwUbD6g+gOC67yrqum5+9eIKMT8y\nPn4qxLb/Eqy5HeQRxvIw8TjwAaggVoTHSvQE0qWlF8ZSXsrIsV44zyWdY8J+\nNP91jRn0QeTPn9f4s8ztXu3vmXq8wwGYT43NBJw8iJ5HBeoqM6cWODxVjuBH\nuDGB\r\n=gzoS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"cea7acc479d5cc088976c90deed3702c4a520b94","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.9_1571903417749_0.8157395058598074","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"jspdf-autotable","version":"3.2.10","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.10","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0cd66ff17e4d3c981a1ba177ff2253badb5deeb3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.10.tgz","fileCount":6,"integrity":"sha512-8VPe24BQnQ8CckAn81uqcqjEgdywj8AGynHsA8LcvXNzLy4Bqqm1ydLSPToBw3Ap20OmTKloigoAcUbdArQZAg==","signatures":[{"sig":"MEUCIQD8qV5hltYExMpZoaVU17+6l3Yf+8GmpxRuoq9x7JGS4gIgAM8G8ULPkdqoVuhpiQoRtf8qLBrpxkupzfUI9lDrmGA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduM5uCRA9TVsSAnZWagAAJmUQAIQ25py0ypb/YcjaguiO\nyFYKMb8Bq0dSNJfWBfEhq0PO2oNJMClhwV2KqDgEbnlWYKqGzBgJtMBXrmlP\n8hugGzDcTU1gjyemC62KSnEjNbcbwuwnFdg/yS1WfDHO+810lrG6lwmgkLqG\npWynaCFUqBYB7gDgzOLyzPl6hrCUcYghiSuSW2LTDUu+u7mf+CEc7U0nEqJk\nHIIac2irIiX58GpyCFbwfLNEvNm/DFouQQngeXEEva/hSOyTHdAFRU+kkOXF\nfJso1mDNuU23MLYDu8nvhOIuHY4fzvNnAz5jw2/h35fh0dZyZl9Q7HxYZmdJ\n1TnI2P6Qr8HZsLx8FQCJ2oTe8llm8MUwGuVMH/wwYa75Nrf5XXcTfaXlS0s8\nrTS8fhw4R06PXeidCoXSKEfWsLy7va6EXuvSJ/gNgXVOx20iHM0jGXDRVSgW\nH/PKIvgwvmE0DQ6AVsS6dcadkwJHKN7kO2BvMt15YqtM0x57ibluq9VsKwW6\n6BrHTK45bTuimqfrn0FATaPGGcqcM41o3ka8fAeYWNfaUniH4iOzwHakNTHo\nCKlZRKn62Koa7dJFbVI/sfHEtCFpamW+EQeQ7v10b94nUM4NO+LjRlAg9Dc9\nvoUVKgnTCU/ts8i4+18nw/STESRvvW4W9NzO3/YBEFveZmhBAegEP2kY5WPa\nySPl\r\n=1XdC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"462b1085eb69d35483423a6ef566121bc58e3000","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.10_1572392558516_0.6753492622685138","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"jspdf-autotable","version":"3.2.11","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.11","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"a6951a26b494078d5d3ecf8efe00587b5b4c51cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.11.tgz","fileCount":6,"integrity":"sha512-w7eIoHWXXi3sT7oGf3fCfeTYc0Od1ww2vamirleS58OF7pPZE4soHA6jhMykDiVxwRIjgks8UgoXZnzJwurIQw==","signatures":[{"sig":"MEUCIQCAj4/kHJwBCK3sbWnNxi7Gc1eAIsuKY9hvPhcGtkaA8wIgXXIrBZLfhJuQCKxeq+YcqYneH5baKHYjcif3kt+6ARc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzmwjCRA9TVsSAnZWagAAXYsP/2jzIfXLeGiZRdvk8GYH\nOpO5KL6Is1xczo/sBUsy7SVmHjCgRM9pz4Y7B9QcMrrZtClAAGt/7oXXGqIg\n7lwRxlq+zuqWWFC8iSMHlYLH47OPPLgtB/bwUL7ElkUQMAOpZtpJ7BwtbkU/\nn9q8hnSDVj/6ikuxP74lJ50TJuRcCWqYeGGu1wA+w6DA4Fl3Nheu2SgjFEz9\n0J2WnvURwXFjSqUJXT4ezUO2NpShTg38OhnCuD8fvEqPH1MV/5SwckYVdiH7\nr3Wc5sElfFAQ+c6AXQKoleyhEcwaecmMvTNOXF4RFc9DJ49pnH5GZAIpiVZB\nQY8yKeajx53HbHl7JjH+cEKNhppIf6LDhy0f1g2nAfly5QvEfWDASWoF7bhU\nc2MngKkqDawDH9mDQNu7GqevI0cNk0wcuPzFOoyBRI4Vifd/4QoNsn2ZsbQZ\nmy7HsL+LuIUTRIvff69907ul21d7ydjLNKrYMil4QHIXVQS2/k2w/W7+3uNs\n+z3pKS53StFiRRtnpOZGT087HGl27rgZywHLPyl/k5ymaO5LdXGbudLabuET\nro2acBTq/Q9P4yAyvEnfCfQsbVavvYA1NLMS2SnOuNdi4mxVm3L8/cnKBl8b\nighDU73AHHPvrwNJqC2ICxmJASDi/fBEz7oKsuHuSDMzaFRyQoME6V3d173o\n+erP\r\n=5gCZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"0f4e3983aadce4ff3ae62ffb0a2e6a8b6f5f2819","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^6.2.1","ts-node":"^8.4.1","typedoc":"^0.15.0","webpack":"^4.41.0","ts-loader":"^6.2.0","typescript":"^3.6.3","webpack-cli":"^3.3.9","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.0","webpack-dev-server":"^3.8.2","@webpack-cli/migrate":"^0.1.8","dts-bundle-generator":"^3.2.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.11_1573809186910_0.5249659990460682","host":"s3://npm-registry-packages"}},"3.2.12":{"name":"jspdf-autotable","version":"3.2.12","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.12","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0feed89cf57fa3b9296b358e793a42e1763c7cc5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.12.tgz","fileCount":6,"integrity":"sha512-NMEKHnQoxSqr9bEIMI2t75pmTkGdb1vv6ByVo63B0l8sbW7umnv+f9XCRaYt5UIkzRJpXooHOeHAx3p7OdnQzg==","signatures":[{"sig":"MEUCIQClHYTSoQD1S0aPOPi8LEB+AHizODzhV96dDz5304rGJQIgBR8Gfq8fa6UAPkNO8hR8EHl6gqxoKtOjrIPebjDRQNI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRDGHCRA9TVsSAnZWagAAzdAP/jbwyMjEinuKprOCTvMs\nFSv1rERDIVKuecn2gKCrTJrfSiyFqdbMji351I1tfAmr9VWfgp9WGOPSIH5m\nias6o+KAhSogaHbIBGgX0lpo5g74j0BVJpinpxVD4elK93SX3m0D669Roxyw\nOwxAG1jmIwwTIGaO1o34VoDimzD8koN0gGjzOTLq8OQpAqHskndnmVIf2+EY\nZVrlOwQszsgHFLCXo9aaQth0ruSxMEbBymX/A3IZWdOtdeQkNpRNLiuMBhx3\nTb4fhYWzquc+deTpauXpjRdkndNFPn368xN96YC35L3PHSn7BFFjjTk6F1iO\n9dw4BJQTjBvo8+YK0v3XVgqDkzA4mlIm//AcLC4PP8RA+KD050H3YiHTY1pi\n9nboXXRWfr/qjwUPtq+xZ/d0NRHdwOC+vhIa93AIWfhxxpstJPFnIsxftHXH\nLmszaQGHR4u/Z6QbMtMusM0ekpCox9Lg8/U3tzRxmB7YcnelDr520QonIQtC\nSdlcGyjIpa+zPPZtpy/NMXDFmgpDF47svOx/T1q/7wK2Rod80fkxpH4msyGa\n7s6ysCVf75UvcNXimp3ej21kA6CxK6lZ9kN9jYnHUP1aKuOOJZxvJ2H9rfeJ\npbkXxsWIBeSod+gxrshITbfZPq5g3QMU4Rq6vuFlTbOxntf2r9z4ThAWOhbx\npPut\r\n=aZ45\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"249d784a61bb3c494e90adbe54427d211f5b950d","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"yarn prettier --write \"**/!(libs)/*.{js,ts,json,css,md}\""},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"tabWidth":2,"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.0.1","ts-node":"^8.6.2","typedoc":"^0.16.9","webpack":"^4.41.5","prettier":"1.19.1","ts-loader":"^6.2.1","typescript":"^3.7.5","webpack-cli":"^3.3.10","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.1","webpack-dev-server":"^3.10.3","@webpack-cli/migrate":"^0.1.9","dts-bundle-generator":"^3.3.1","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.12_1581527431491_0.9921722277444116","host":"s3://npm-registry-packages"}},"3.2.13":{"name":"jspdf-autotable","version":"3.2.13","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.13","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e677ddb4787b40c91fe9631badd0d6126b37404d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.13.tgz","fileCount":6,"integrity":"sha512-ZBTTWiNPIxcfdx7N1nGFkcwfsSh93zboOaLOESdYXcRuFTwYN4YpfMI29WrWSVa2VH0ww0e+MpSQZJXNyGZcVA==","signatures":[{"sig":"MEUCIG7t7ojCLPZG35fgparYh+87L9sGf25O6E4iXxsGftR/AiEA2fcs83W0GRAqU/nfRSpcdlx/279JYiOKJxBYhZA8XPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRHFVCRA9TVsSAnZWagAA3y4P/3LGMdDEKQA2H21d7pUr\nWGxWKoGAcB9/voJ+QLbHowRrsDwev5JVIt44T7AwlQH8xwBb5iOv286bIgLA\nmqpNT2el2CtVX3vZ7uxxOAjrN3EhhVBKK1lHnZh0EwQCGVC/7arjgDmjhMiJ\niJeC1MDr1Q2G+k9qz2cykFB3TPkm0sWGZHIMMU0RfWRBVzKx427Bidkgha+I\nbpoCgVNtaq0xT3NXAkjRvCsRwadpIQK/n1tiaIkPQqCK9roS0CCAmQGfPwXF\ntrDNlFcaybox7v+YlM9XIuCrkfJnCejy9rBaZd4S9cswA1i/nzT7bo12V64i\n5B151qrwlAZSYUIduqVGOKlkgbYbT0GjvX/b4UWicOJirecV14tNyr/0SH01\n1HUOsL3Yk9s+Ew57x1WDeWXzamORZro2y4KssWboxh/jmXTSNoYOn8al3WIA\nRxkRT6JlFb5qJOXJ8h9+xkuwPiLxv4qbqWgLH/rEJw16wo3G2XqaFeSr2FSt\n/7eb9o0wFCPFJG6Qk3rjkrjK3wIjbhpNhX7fR3cmzZvIukOh1ogDzHKMK9lf\nzaLC7HtdxzZspLMTw9i4FJfMU4OHfdb1Yy8NnWo2s1qTuiWS63ygrzvto5EZ\n+oqqYywdN5OzQYv/ufRRbiArGh6SkczIuUs8IcfI85E9jYICGZ1L+YFD/x25\nsKIq\r\n=maT5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"d114a9f695a8aa1a8c249090c7910bbb2a696291","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"yarn prettier --write \"**/!(libs)/*.{js,ts,json,css,md}\""},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"tabWidth":2,"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.0.1","ts-node":"^8.6.2","typedoc":"^0.16.9","webpack":"^4.41.6","prettier":"1.19.1","ts-loader":"^6.2.1","typescript":"^3.7.5","webpack-cli":"^3.3.11","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.1","webpack-dev-server":"^3.10.3","@webpack-cli/migrate":"^0.1.9","dts-bundle-generator":"^3.3.1","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.13_1581543764815_0.7767718694534353","host":"s3://npm-registry-packages"}},"3.2.15":{"name":"jspdf-autotable","version":"3.2.15","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.2.15","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"497f2e74c0207cfa18b150f31f6cf9bbec67db89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.2.15.tgz","fileCount":6,"integrity":"sha512-gsYkl6r09aYrUjFUAt94doRFHET1cwdm3vRnUX4A6PSEKh8FnnsoHlyXUcVnraxEOEh7jE0rQK4jbR3Q6nnPng==","signatures":[{"sig":"MEUCIQD6CDsP1/moLNBbg1mWUzN6K250U+fJtgbG26uU8xQBCQIgBtdP3KXsessElepbCE+/RsNm2DySQ47MKJmSy4rqMKM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecgsZCRA9TVsSAnZWagAAMEAP/RdSMwKJYYho4y0B+xcd\n82QScLUskRnUCuVU5BortamPcFXVDMPV9NdyMilJ6W8c51Ogkwt2/ApXMHY/\nKZLbB9Z4ytHtpmHb2h6Gw3DfNfmA5coW+qxDb4aTCltx6MJnwRulADe6y6ks\n0UdSsNgthiRmgVw36WsZYEvVgLHH5/lUK/szc+oMohudouzwXn5NP7Tdx44C\n4a7g/qgStBM1xiDsSAOdR8fU2LP4zGlBHzYG0J8YJRhxHNCwAq+fiHaQZ1Zm\nNwYUYf3AMGJrjJ34vOrYIvQ0DWT3jpwhpBje23sEMMmMBFmrQy2YLfTjtKYx\nlXZh2i7y4fO79lZ2/IXT6+M8DH4iDC+5WVTOC7MyUQXdwXv5h9KmYpsOiNjq\nxKHZO4zhXdRwdObaXGCm4UDMNpu0ExFf0vejpKhL8+/ypFo86qCA7xrEI/y9\npQPIcH21LqfWoYu7hnL2/Ew0Q34AlsewJ8qNyU/VC/Nzg6iehmn6WyeEsCY4\nPF0kU9TSMG3OmR3LTuGqCpRSF8g6+6x5D9/qvISzmQAbbpJBTy6PKWT3Ogn9\n6YfSdui5WBL83Y/sUm/dYb16VDAYJqCREFni5W3Q+QQC2mVSmcnnEdQiCrDy\nIkfgDocw0levV84UvEtZH384moSpASCwmArpiH3gXavPCRaeHuI0of9SwTMU\nT/P6\r\n=rJ8F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"e33d7115225c270bbb5bc0b8fc89b6d108ac7b1b","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"yarn prettier --write \"**/!(libs)/*.{js,ts,json,css,md}\""},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"tabWidth":2,"singleQuote":true,"trailingComma":"es5"},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.6.2","typedoc":"^0.17.1","webpack":"^4.42.0","prettier":"1.19.1","ts-loader":"^6.2.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.1","webpack-dev-server":"^3.10.3","@webpack-cli/migrate":"^0.1.9","dts-bundle-generator":"^3.3.1","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.2.15_1584532248568_0.8827545884252046","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"jspdf-autotable","version":"3.3.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.3.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e66463f8bea76da25879f47398cdd53a6f7e5986","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.3.0.tgz","fileCount":6,"integrity":"sha512-1t+XhYI9u9meAi6ti6voZeumigPhgJZdY6GlI+IQ9EB1ItmQcAl+dOhTVKOnOdTFbtKNPFsbYibjrNeMFG14lg==","signatures":[{"sig":"MEYCIQD2ICUbwxgp/9I189xtVQ92l0K4LI546c3hScpU7pTMqgIhAOx30ZrLB2VnJemuHmaT2O3aK55UFVK+DRwOXPy8/Rq5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeJobCRA9TVsSAnZWagAAHkkP/2Hdak0mELb2HhtSkXNu\nqU9CIiilad4LfuJVYBLrHiwftHN/LMm4o04pJ9GEeECq3UyOMZVgeNVh5hQ2\nGlQ7RBq+xSTO6+X45HXDPd0lVTc+WZn4prXO7mcMkSqd+qbmHcMgkFuegBLh\n6FHbWq5kc+Yt9CUScZDRkiAVDbHBXMfOFbqq4HLK3NyV42C8LEA1aonkaBKS\nKf4eh2wA5TPZ9BQUJ9MESlqm5n47C2zJboCcHKthsZz/oC4lfXYMxyuzIzA/\n7gZGuEds9khb0FYryR8kx+3IqNczUMS1W4ZIpDUXFPC3oUGSIEg40weGtl9q\nPXJ+GviprVnAkb7T5AnPggKshEhaJaYZBH3mcuTM6lmyy9AZ+vG3pBUlu9sx\nmgMGSaqlkVVe3GvghRQKdFUULHKv7sOPvbxm6PfjktkPdnZveNUl61aWDydE\n2+Lj9fUlHZUa2o4nntjWtnMLKgm58rglyjD598Q7CxvRhilN5h3gYsQhraho\nbvrtZ5jlfspq63Z3wruzY5zR9f7Cy6Y6A5VRxQOnXWZFDAie19Ki1atDpHKe\nP5F9NUimZjclXUnDZy0CJdMz45za5BeMRgZedReCuOf851gbfmLaDtSaQC/4\nIdUqMyr3l3pEf6S2T9YIwF+3aJfJBjIjVbHTbmhCoGVHBE9AMa822RSSUZpO\nNbWW\r\n=CzAY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"84c95eff0b4e717d3302b4ff4d29c39de4723a94","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.1","typedoc":"^0.17.3","webpack":"^4.42.0","prettier":"2.0.1","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.1","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.3.0_1584962074533_0.6641429005031081","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"jspdf-autotable","version":"3.3.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.3.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"cf7939dd6de6a044b6c36e438ddad6b0e9761b2b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.3.1.tgz","fileCount":6,"integrity":"sha512-DR36ewoYHI9aogg6eHtUtnLBwGSpfXnT9qZCbqZu4dL7bnzovmpdUCQwrFJ15T8dPMtQZ09A7HoraeS71J49dg==","signatures":[{"sig":"MEUCIEAGXmu+EhECjXqOUuxbrYFFYALTulyPJwPI/PwzYiKGAiEAusm3vUVU3j8+Mpp3lOS60lY27Slj5crzRfyQGK6SZAE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeefSRCRA9TVsSAnZWagAAJFsP/2iwev8duJbOEmiwh0gG\nazswO4bwzfABuP4ejQrh5ARBp1kXUoEB9fURVRb7nQh/VshBkJ5jBO36YUjF\n9+wPcFNMd0pSIEtrMjZYUnRG4aUadR28TywsGe+FkKgekTS6BMqDQHhaVi3I\nS1LdBGKxz76pKXvipVDPzKxzRHy6nXSKHDhG8hdOv1MtQ2y0zbyhqWqb6UoJ\nb7vzRf7F9UbCuryip9/Cg13ul/ELgw7/CwZxiqn4XVA9OKHYHrTKYDNI36Rn\nLZzmTVA7dCZp83zydR9d9Cd5IggJp6JN+05Onajpx69JBkLQ2B74J6U8Z85I\nH6aJR95KZrwz+N0KBROESQBmM9XOK63CKmgeBt5z2P6K1xYVgIheWOCOwGYe\nLZFA3ktGY0/TzvOhju33oFr6siH+PEYAC3vJ+cKNxqhPQLQp9Ud2gCligQgP\nqTjM6lCLnYnU7E50dch57HRjjsM5k1ucQMJGl8ixZ/B5wlvcV3oclnc9cLjU\n56wccfCq+7VXditCDpCfiJl+c0OGVfHLpRst6nPkQlBOeZDS20l/z193UTqI\ngn5YVbWtAaNcq9nC9hvupXxa5gPljYKZSppQ2ZJ3ICoJjBo3tcRsdf0R1P4t\nAjOu5snLzePwm/J7rQVY2sZJyZC6XOMAuy4ememWst39++y07swAYYuwx4yJ\ntrsV\r\n=Fno9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"8a976d2ecf18d296a037a6d6fc7977a021a1ca88","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.1","typedoc":"^0.17.3","webpack":"^4.42.0","prettier":"2.0.1","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","object.entries":"^1.1.1","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.3.1_1585050769332_0.2937621686998342","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"jspdf-autotable","version":"3.3.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.3.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"c7ab740e0e93297d34110f0954b9f3e580dcaf07","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.3.2.tgz","fileCount":6,"integrity":"sha512-8caCGMno7R0qBl+ZmU+JfiPsI2jFp/coCuBqMQ+gNXhVwEI77SdWnZcaVznnBJhydMI7bPRk71l52zBnqCoiXg==","signatures":[{"sig":"MEUCIQDA5Iwu4w47RG0801NF/Gbz+QUq8djfPjLvKGHtU0I9+wIgKrTBl04fvfIX3OyYTvsjWk1hGqu5e11A9lp6M0HQsRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehLW9CRA9TVsSAnZWagAAUXAP/jWciHtdZNR50cvkf1wu\n3Fob0If38Xo0e2Jh0iDSNGUkS1vf8pCL6TPtKQypX8ypobghnpGa+LkpXZqr\nvzBIpEOI0tTc3dw/MSXH68sTVS/+51SSl61CZyw5ujRUQcsvOOJwPIIF4stt\nFEf/Xw4uH3AKhvHNxnxbQSyIt+ZVbwpLd4zf0NKwFFh3az7v7Xa7gPJG216h\nOOOBAgtwhlmfd1TfnfEjQ7HTKMdiJWUhwuAsAjnGAiWR1w8X6gJ2IF9tj6lW\nBkyWRZqDr5Uy3bB7skttNKGrnrdQmZrhVaUm7PE8TSvj727HRNAlFEHV3Frs\neygb4yRxNCkcMtVRMEIc3duEmn8aXsgrhmLQQLJ4aU2Otmh+bBwgTxxx5GI3\nbVLd93HoiU+7Dv76cPMIXOeG5ow8LU1KPN6X6cAsYcp0X3m/lL92PjPZulrF\noAbjUdq9y+b8idokELiRV6+5Hsn3uCbtDmoa3JqHfGcJVUWjShn3whJ0aNtf\noqv0uHfqzXYF5REL+cd0NHmcBzNyGhX2hSpumYMIQlp+0ruiJ+LHa7NXXWhX\nKa/7jIGO+edIfwVLO9tUW51FCXuoiAS7X0TgKsSDdutv/fx9Bf79xC0lCnWo\niv/L5Csup+XpU6Xb7uchkQVmEJw0yWV4eTMmhAYBl8kNUoHqY8HiXBusCd87\nFWr7\r\n=5mTV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"1933b2aa5c8911ca22ed6dcf8aa2bcca523703d4","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.1","typedoc":"^0.17.3","webpack":"^4.42.1","prettier":"2.0.2","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","mock-browser":"^0.92.14","mock-require":"^3.0.3","object-assign":"^4.1.1","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0","uglifyjs-webpack-plugin":"^2.2.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.3.2_1585755581268_0.6903153506946826","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"jspdf-autotable","version":"3.4.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"f9875af9205c239931e5c2468e48adb33dd95b8f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.0.tgz","fileCount":7,"integrity":"sha512-XP57TBBhDJpVSCl+fXYk1dS6drdGWhvYOWfWR/3nkyUKW4hG9ZSG3JN5PPSO0peNkV3XpUS6nQJf0mAEgmBHSw==","signatures":[{"sig":"MEUCIANowq2Tfudm2CCGCiPZTTmFen55UO9gPzuH0zPCcsy5AiEAug+wEUwMXHcnhtR/xsuSGQxdFoj9Um0Faiq/lFz1Usk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":137365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejkpcCRA9TVsSAnZWagAArMcQAKAX8Dcxx4+2gR3BksIm\nw0/6gAQ1QTR/es1+p7w7pG0D5ogTz/fRGuaH6TtG4OhDEmmMD7f8RTjTi5sW\n5qP+tk2jxNI3BqzFloi/3gLZ6meLq2lW3ZX2dAdMy7/0sVueVNq+bUqhgQxr\nYbItqKp2v50IeJHrccMXh4o11wxcKD+jB257eSp0bojCrs8fkVVLvj8WfaFy\nINTxQm0VCmc52hhbGg6jvFY50n3gU3biXd+cqu+qEtyum3lAmIe9DO6BknfW\nJP1PZENC9hK7gl2mkPrXc0wAjIszjsDSjZ6MZBStW/5O//Ml0D7wtF6OkFva\nx8zpdxiW90e0qpbuPF0gn7rjnOVnM91+Fx4jKMamztQRQyUepWfGbkLRdV6e\nnvFlLLDi/SDzNMfLWPsxm54QQayFQjfl11DEdB6vIncqjUCuCprjqCPflaB6\nnaBOKvEGll7TzPZRQd0CIvVXExZJEn82L7Vw/vyAwHO99TwmKgMovyOlU3pB\n1eZHJ9166dINQ2XlwkuK3mtGYkP+k4UP76nHpTLm989Gi8eluDuIkz6OF+aV\nKd1aM/q21ZSfMVKCIOw9hCwj5SAG18bSEVScYpgI9bSIvHIT5Opv7j4C823i\nLMvVbbnaAQKS689BHk/WbiZKQSuJWIL3DibFi0jpbqslymTbIhqsRAka7Mq6\n6eyF\r\n=9B4S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"2ba86e7971079401ca6ce9de345682a1413d72f8","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open --host 0.0.0.0","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.2","webpack":"^4.42.1","prettier":"2.0.4","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","object-assign":"^4.1.1","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.0_1586383451896_0.95163197923907","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"jspdf-autotable","version":"3.4.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"b7f2cc25268cbb056e30c3bfacd8174c60fcbb1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.1.tgz","fileCount":7,"integrity":"sha512-1i7CutPv0i5p/P2zM2FaIeDdRL3Umf0INOU3e1sJZWU4zTUd6JRZoiGKQnEIy1IAyhpu4/ehN3NcBO23sUtHjA==","signatures":[{"sig":"MEUCIQDpqZeWM0314Eli6ehmB0U85UjNk+4vpJbLVPuGtv+SrAIgTG1MWDV4Sx858xP8JYKWrQ1qqhN9Trw3HAvIi1+4ZnM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejzS7CRA9TVsSAnZWagAA2B0P/0813zgpVjto3t+dS9G2\ngAxjw00oivUP1r1c9ALfUPmQvJR91EN3BPVZph42bIkUHuCBsjvftRkApECJ\nNP0ABBrLe4zLeOyedHwwCpcGpjamTsxnqHkt+Mhio2RVW3NCj+QFvXGARG2y\nN0gdud/s4BgT5WgHJSDUNlTKdz13ieLOjJproUMCrFuZFU6+1gLDctlG4LB9\nKHujbrwluJQyLYp53S0G8+DjQRtfGj1iVNS45kHDy6wGtzj/6q66BFpReHDA\ntOYrOIPc69vh2YHBpNKHQbUTh3OLzKtdgjxx7ZITFksD1+EP3Bhy3EbEycp9\nMf6zzll0vZ5UB6jv/O6whcnUTs5w7TtTV8aABej3eavgtSW9C8/fBmhq6uTC\n2K51QFqs8rsMzVJiNVqIkPO8aWF29plCsrlBy1GFx9ONCnjK/LEGQX+bb5sM\nVzZqtKTMbTm4FexqxkSKnE82H8A3eUjjdhaX/X7DWt+I4jyb2X7eqCMmg3FG\neIbVpVNV7uKZ63BjAJ4VTmXoAxopgHWDabFY1EoRgJ+FOvfcvGUK3vTxMH7g\nrJIAAFbnettMsHjsRsQ3o6DM6RaVilT7jCIe9oFWJzl+UbDU+M9j1JtvG+jd\npg5gxCKE4rYTvqd5ZR1tinei8bi5dVSkyzO4DX88AFwyUt1RTZn0uUD0VOUZ\nzwjg\r\n=rcI/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"d6e69dab2c194ffd135f42e79b67a0f7c51709b2","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.2","webpack":"^4.42.1","prettier":"2.0.4","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.1_1586443450921_0.12521560071074922","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"jspdf-autotable","version":"3.4.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"94b2f794909bb383dc6dd23e107f815edffd8961","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.2.tgz","fileCount":7,"integrity":"sha512-wDPICK8P14MatI0E/pRkEAnpFnMtFfxYNPPQdHJqx2EI6b2nz3PJO+OIYu3k73Q8ysJqq9UeB0vuVihOVTjKPA==","signatures":[{"sig":"MEUCIQCvSg1GvTHtjzVzfjsmLMMP1HGiOHktDEiJZH5NS84iKAIgMV8wVijJ9pL75me+UMaQnDCfiKmcTLXAiYnnQRjShok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekRFfCRA9TVsSAnZWagAAFHUP/RkStao75q7F9+Lc0hj/\nmo+DTnzHhzlSLyh7fQbdJAEKQjIc5+p1Ph5JexZj0zY6u5TNF95oC9F2Gula\n1MXkwcnbCmOi5KbXLE63vAHBX+iF7M8LxLg+2HjHepSle6+wTyZai1D8D82f\n+fliou8SyI7v6QWmBoodvf8mN74uBV+I804wn3fycCrXEPJTSD7gFm9oVbIS\n4LCyaqC4iCZ2la/Xil3zeOdK+dZEnciwdoOEAmRZPfIAyYmot0DuOQYHTFsP\nm3m6L9HgRqKZCHfFk1+iNgOJU6Y1NmwDIkk75hHgl5t612ZypNRCEF5wJtyN\nGGG9TmHzbTVb29rEXeDFLdl8QdoARHiK5jFFtr4U6IZaW++3rrmwYsob7EtF\n0+ghX1OR1ltEyNujH5yPZm/EvORDJ9hqOmlWVxe2Bq8dGayS3KtOC10JRJFh\nNzKRXZcmop7KBy9rtcxTSlq+Q70umleYmi2g9FVQi0TvPGOsAK8EitBRT6k2\nKW9X24HsjElvs+GmRaLBBAxhQUEZStHvZWIMntLf/eA7GiWwzNKqPxfdKujc\nMtuv1ng5d2qybZNrNgp2cYnB8A0iW48dhJQbTnmtLV/sjAUZslWEoYER83mk\nf+rICnFis7tP9a3x/OQe/xlAYtFZvhTe9se5csgsAMSbzqiDX4u8e43BI6R6\nh2Bn\r\n=/uFw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"d5140ed0413752cfb5f81ccdf6a833738928c045","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.2","webpack":"^4.42.1","prettier":"2.0.4","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.2_1586565470720_0.19776531731907343","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"jspdf-autotable","version":"3.4.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3cf81f52e091bb5c25549adb263b4f412cd7d855","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.3.tgz","fileCount":7,"integrity":"sha512-9/Ox0d0qiSYfBoE3Ic3/IJeXOE4EO3OuWTsrf7X2jpz6RjUqmp8KSSeeLYM+fSMiwOXeeCoGyUkWtocGZ18XvQ==","signatures":[{"sig":"MEYCIQCZ5FBzz7HDr2oFLQAqQYAlUMckKHdqoeJZeiomPAtyFwIhAJ51mp9oGzrV+gd/fWxMejdMv4RSLqifbP6CSlGVYxgL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJek1QLCRA9TVsSAnZWagAAeGMP/11b4bW3cSMBZTOwMVBw\neAYcm9NxjQf7M6AOUgTfGUw4ls15cMfy0xgVGhhNrT01hUlaxMGiuVvAar7Z\nWxMBQTR9Kx2id4lRiqwd7ESjdFV2gWGGlaTaQv03w14wfRpskqKzK2n+NkF1\nZkcgqK8LGJxGzjAT+oTl3f5wrJN07v/FbZ4MvATij3y84gK/k3znyn+oQhoR\nAnO93K9rdPGaB5fmjN0X8y5waT2IUFHT6IOHnjT5t86XiXmUv/6d5sSsWZi/\n70g5WSwmd7ruHMdf4/OKEBDbiX6Fbnkhwd/15EYN/RB0JmWfQoarN11kZyr5\nqLR0j1QiV1jEvYliKqN4l4RaAV+6o1FICjxoK1x8OpBJOTWP82DNKwWXqBQS\nVUJZHsWnep1g31JCNrOA9BT1/5qEiLDNtRWl0+JPMCqHHJVPOiCib6cC0uDu\nkFKnqyKp1l2yhzCpBNayCFxzlQv1UNRvEon9/iLxr2OlnZn47P2Lb2VllaFy\nrg/NJiHivZsnhjnUlOC1MZT5DIT51j6DTxO8vB4CDfBSNnRg/BcF7mTBE60Y\naC3XtrSzoqM+03HTV6pNBf8UqJYyLwCZshaQnPf41HLN33aQxu3t/tuNeKBc\nbkEo4DWRTTK3jL19E7gMbs4ZOLBVxHcpLmaSyooQ/D4hBfj2I8SfABw5KJw1\nXIMv\r\n=/x0l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"799cd737d7491155d0914e7b0dfb093976d16b21","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.8.2","webpack":"^4.42.1","prettier":"2.0.4","ts-loader":"^6.2.2","typescript":"^3.8.3","webpack-cli":"^3.3.11","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.0.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.3_1586713610809_0.962462507589074","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"jspdf-autotable","version":"3.4.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"63baddccbb08b87fa64a05f5d216537baf577fbd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.4.tgz","fileCount":7,"integrity":"sha512-pnDo7YHj7KyhtqA3cQUEBhMNqiAfOps532iGBgzTzY0ymJzZesueQs+nOVjA0xMwidU6ZGzBgcb5y6BvsR6bAg==","signatures":[{"sig":"MEYCIQDCrEa4ZSSe1AAmWCRHs7HuYB8xSHtlKw2lDbSpbTYfiAIhANkVn/0/o1HyJosUm0qxfmNAkP26s41PIGC60l2KmEur","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoN5nCRA9TVsSAnZWagAAr7AP/1Bb070Wyz8UfD4Vd1jD\nXvOxj0xCIO/E5bbzf13FFOwAHwuce3+zYBkEx0W2DSVpsqHinTJ28AQfcI+y\n/Ws/HgeZKFXW854NH4dgZoZCnPzL7Jhuvw0k/8sR0cbCtoC5XjlSqll4D6UP\nzqNyfsZJMJ2cnNp0+HQRQH4v/3uBxdvkdZBbBpUbySjgxzoN9M/YgVkrPEvG\nlP7fTPALKH++QfDfKI0rz0kYQg86K7Dk3ZJJtiGxlVkkveQkSynUUczz3Vxb\nduPSIVxj6L0ggI2mTJceACqmg2Oi0iZS4B1MMTWQayXz0xH/pQBIS3m99Wog\ne71vGme/2Kkwi0SdwAk9rnmc4VdeAMjrWhtZ0LblHOfmUdo+xePWSPy2cioL\nvt/HBD28L/54S7GR+Z1oDg45mUZhxI4SIsDU4HSRluOhvyOSZpkTh3gEg8Ad\nWiPUXSO9bbtqD10lqnyPVyXgX37YZ3lAwZe7rTQjQ9xsBZsoDkVcusE+sSp4\nqTnapQh2E5z7umi6W40HPK06luVZ82cNqmqfB9NK35AqAIhpO0x6QcAV4w8R\ngiINRSjOH5/6S8U986XqFCcBbsQYd+5SjmRP8oTZ2MsE0XwEAvzaezPo1RVr\n+WGIwisJhjp1pRHyXTobrZNUVOHpfj0gIm6Mf9L8B4Od8KQZ4MZNSCEhpD4F\nZsWP\r\n=dS53\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"ed96915635bd5d6de253bee4683b30493a7d93c9","scripts":{"test":"mocha --require ts-node/register","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","format-all":"prettier --write src","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jspdf":"^1.5.3","mocha":"^7.1.1","ts-node":"^8.9.0","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.4_1587600998423_0.19490832065968244","host":"s3://npm-registry-packages"}},"3.4.5":{"name":"jspdf-autotable","version":"3.4.5","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.5","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"095c1ca1afa4a7afb85c8ecc1634c7146cd2ef78","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.5.tgz","fileCount":7,"integrity":"sha512-wsE7fyYNY4a9QCxmlGWPh0gXoUbBAsx6wVR4d8S6q0HwQtqDd1cAnjjgjXKd3dax85sHi+w0hVG+J7BIzbTS6A==","signatures":[{"sig":"MEYCIQDPtzU4DGbM+b6s2qk0ZRAyrfei8LLLx0MKGajTmuixLQIhAO7QoRKNwBHPACGbNISHtOcLGbJ8we/3UOSxkfyz5KIc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139375,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepezUCRA9TVsSAnZWagAA/xcP/1Sixcl+rW61o48fHFRG\ng1O0HGY+0AxumKMOt36SrN1+QqUWaS5mY/ot+fCmPtCxaxlurUovaEiE66b4\nyrYiax9JnbAekgMHfAudLxczuJthjITLfu1ZsPik4ZMV2U7nTyH3KedmhW5+\nEG1jvzbmWoiFZrvAE14eAqMUSfvA3iPRlhtxgwvbF40X2HZmuwlwwqU2BKOC\nskwkVYFiAHQI9yItdkG4/F1vIL4agXPkkw3SkWaCQ57KTbJI+oC+hJI/NK56\nxMEnTX3Qjygc0JFqJVQ1zhprpV+F599x8/KV32TD40+Hyccpec9aA6NxQ59d\nfpIHAbh1RRfl4rDuFvAov7hk2lknu3+XGEzlE9xQrYwFvFNjoXMGlek+f75P\n0sFxntgOXcsyudJhTNkbIVH5CLAd6x/YWJVG6+X6Ix6OLjP4dzeqIyo83vxt\nYaY4eQhdeirnORd9b/3kdgQRimaRh3ibdujOs5d7irulu22KqC8cLBLz0U4A\n4ttVP7RbNhfqGzWaW4yontrN7SxXLQswllFkRmEg4oRCeuYpI3IQqUji0L8W\n88BDwYNRBmxo8uFPMVU19me50T/QZU+/GA7ftIh4Qj0EPEnlnEeYaroaKzj/\nQ1fADvhVW7uBqPsjRQKR2HGtbOvJk1nckbfLmuC9M1uPw8Pj9BLD0I+3zzF1\n1bfw\r\n=PqEi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"5812a8bc4d1ef7b8055a396ff5a0fa23aad83902","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.1","eslint":"^6.8.0","ts-node":"^8.9.0","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.29.0","@typescript-eslint/eslint-plugin":"^2.29.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.5_1587932371651_0.8883314526246342","host":"s3://npm-registry-packages"}},"3.4.6":{"name":"jspdf-autotable","version":"3.4.6","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.4.6","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"d74751ad59d93a23c8d950c5075f83413b13f15e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.4.6.tgz","fileCount":7,"integrity":"sha512-A5rlwQeEaY1Nkdx4fesO47QRZb5jzttEYpomZL2SwnTQQyYnG0cPpr+p/cKeK1KaeZH3UADfWjLUiwRtysKSKg==","signatures":[{"sig":"MEUCIQCMQldUP4ZgqgJeN+/pxMH6FZS2YNBQ4kAZmIsIaEJfsAIgRJIX32VaAjJYaFy/oE4chFmZYZtrGrNGvo2QIlfQipM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepwfCCRA9TVsSAnZWagAAa5QP/1MTuiw2KzJ4cbohKfUA\nM58zixIiO0utnvIy6pKnnTX0xuX644RvA+EbOkppInHhCLYtOKYO3meMBV3/\nH2dlZE0GiCq6VI0FUevpErYMFSpCNuAd7Um5lgTKsIGUNEeXtxPVjAW9Yomw\n5W7mj+1iUauxLXeivEt0yqqTGA69Wym2fRipM3BFf/p1BWci5D+9EMNVK33Q\ncP0UMS5BIr30iZm/rF4ODeflsHhgMOBtcOhiGKlJZErUyrH1rKylwUerZ0FP\nIN5Wno5gay5wtuxHtdAJIrzORiZmGznnZQ9YKaWE+2rjP1XoBBS7ODEQhGnd\nvaODZPijBxccJoKCAKz3QfteILvs24ydLpIT7tNl7/eXdOKk2e68vKvU751I\nk08QzOdwdLCoFN/43bgGs516Gf+QZBkgJaM9ZGKu5E23YdVG0VCEOO37DIdK\nBlv+RYzuJadXGBEwwcuPMCnLhmLsocipQLYitsy14M3QlLc5LYnWzVzKR7k5\niW77YdGOXDMhSVfJACtKVj2Fg3BofmmOhiKA2bPCuZnfaBym3y7N8KS8LFJQ\nlpBC+UKMLj+jD0Qgod79ufCXUEOHFTsQA62cb3BdwjnM7DVGde+pDi5LLA9q\nULv0AbonPBawPKrp+fwAf4v/6fBEfpB6sCGH3wV4akn04Sr1iul1wNy0cTUK\n570p\r\n=8fVK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"6bffcdcc51615c26ef4e4193ed2195ca80d07fc3","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.29.0","@typescript-eslint/eslint-plugin":"^2.29.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.4.6_1588004802118_0.9926231492430129","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"jspdf-autotable","version":"3.5.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.0","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"96529868d33f8153f6fdd9051cd5efb7ed811a4c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.0.tgz","fileCount":7,"integrity":"sha512-qwriTgQRc0seZ8HdVbZagPjw0qtOHAVHmk2uE4SAmVGZE3xoG5BbFNDn1fIhKmaK8mGBpGbBrJbcj0nYk4btbg==","signatures":[{"sig":"MEUCIQCDhgnoobF+YrULdQMOWE3G27/z8ijjC5uj3rbRM+4gAwIgUXSYeFV/sMjG0EIQT/GKRyccxbIFfbNdPhbONjV449Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqDXMCRA9TVsSAnZWagAAVSQP/2MYMuGTv8D8HN7A9tGJ\nJ4ioTfA4ZEDSEC4q2oHSqZY1jiqEdQfacqeSmsn5WCQ04ygQF08p7wJy5UP2\n7X3qCPiKy/ki2F0yhC9TfvBow46TwLQ88zq8xZcVgk8eD2+cxiA3NG3jNL9B\nUs6H4qwrnnUcViT494eZq/uvB3dGCFGcdadmIU0/lCff22kXkXUMlANhJheD\ni5DiRnd2VfrobWtkJgRM+XOkjCdkWOhw31qNUi7vE/g1fEw2gvATVTKW+PkR\nreKIXvrUMKgrs2l3jIm2Sg01M2ly9nVv9cIRRAWJU799VvsklrIiQO92yGbC\n1VazpGKgz6nmzih7EPmHwaMPw1jtXCa9D78oVb2vvA6kp3ni0eKbcUHhi7oi\n4DHpjIfdcHKW3mcA7/rfA0Weeptq4k+pT5m0rbz6Tnyn6WwmX945QwzgSbyA\nE1Wxutoj6wgMRo59UzhFrcnRN1Hahg1BktTxF6ojXSF5zOFbLG+Qc6dW1uL2\nSwAF+6vRXNPIklWdJIph0vNNz6ZHbvixGRIfw4gIm80/4HjQP1AgkUniHzaD\nnRhck6tlgvtgBUy6PC4HMW7VlC8dwBlQBJJ543MZ1rQyKn6S4zE9JjncMQtg\n6rKkjDbQWrC9WG5jrxSGQ5hexxUve9jkSzt8kDog+6vcAzfXgw8NWyxJ5/gF\nqTSW\r\n=APYS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"fc4abec399ca6213c9aeb48f978362b0e3b46d29","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.29.0","@typescript-eslint/eslint-plugin":"^2.29.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.0_1588082124325_0.016936282219326193","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"jspdf-autotable","version":"3.5.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.1","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0db8ae5742d0ceb401fa993f18e0fe6f06cd4e4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.1.tgz","fileCount":7,"integrity":"sha512-txwk9KCNDWzTPl3PFb/e8qdemi8zvqbOaLikB2Redi9tDLCT7AaQ7Iz8hIZZy+BpigcmiyuigD0MdXSig/8jdw==","signatures":[{"sig":"MEUCIQC6jAM6r5TQeQeUzCo/JUWM5ZfksAz2OeBGwIdnHhx58QIgci21eq8nOqqvAN6T6uuccAZ96ngUHPpDsIWy8OW/ZJA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqFo6CRA9TVsSAnZWagAAH3UQAI11FijUpfJ/wya0K5fI\nhMWiTUlgVZtu+j58XCkpLUUdan1f7ruan0zeYWarVO30IgpPImvwyEY9Pe5N\n/2C346apmx7BuollvzPtTmJt5ySqH9l4nNYBsAwbER58F+E6vA3Ej+GWPE2O\nlWuyu3ew9dQcwDaJIJgxJapsWq3kJCKHpo+xKOCrqXOoxAgoo7ESCOwpOYpi\nE8aXsyZX2RzByiA64Nl+S4vBORgirtDfVsWJuA4hgb3uDw6R0vRzHmw7sZEK\n9XdVzL9t1UAboui8MylkTsPpfZ0cdzD/pEsTGNkbYY5FGYO/Q5MKTX97PglX\njmOohKJI2qvM0nIyjM+18m798j62Ib5U9nlWLhOn+i4mhYkDtcpsHH7LfO5j\n8V0wicrW5B8GbG8MiWEKS0/VS5hQZMG2O/f5oAfE9J3YhVgIDbiSa3m1QXqP\nlRdnrOcd+nyIukBCh/lxcfCXCjgyXyXLHdlDbXmujRxXLb9uxiNDIsB69+B1\n7FmY0rWXCfS3k9DHd7sdT7KevG1jQUGCHCx0OdMTrRyXH8kG1i9iDQH/8a1i\nJuhrYFda0DH1qvubO7Tmwf6Bm5a9LtNkBq/IehXGzyv3YqvT+DfnWC6V8nZt\nPDx1hKBVjxtnZQoilMUl+NZp8mkJ4x3ez7WiRKwU8WqLxfiuA2umg2Yes0uz\nIkuw\r\n=fv8Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"49c4461a5d2f926da774f85ca7252c9f818f0986","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.30.0","@typescript-eslint/eslint-plugin":"^2.30.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.1_1588091449414_0.14512231592344227","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"jspdf-autotable","version":"3.5.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.2","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3332b65ec9f0288de8f0c6e3fa8258bfc67977e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.2.tgz","fileCount":7,"integrity":"sha512-LqbTDXjCXJ+d3fvwqMMiIv+GFKobsWNC0KcQQZVXF9fBddZhcPUFbwPpw5eH6s3zD8SfWfirm+Wug5GRMq3Rfw==","signatures":[{"sig":"MEYCIQCGL+YP1vmpZC2bbFVheAwtjipAL5J2ewhssDZUsKqsMAIhAPX+vyzBjUN25P1mllaIP0u7fxWLVZA0K1GmFbwDHWKx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqGuECRA9TVsSAnZWagAALzQP/2kM377fCKZp3XuxKCJr\niwqsjUggkpkh641KEQcbxh2b5eVyT8A4ptS1yFkelGOyG2LB6LFlZUD/oWDL\n5LSllTy/ZzVS3/NsbCQc+SJ/HlrNSYIkU+J0Zf8lG1DQn0KO91zycHIPfcFP\n8vbZ6PMb1tCDyjS5TUaD5hqzcnw6Wk/of4M6RWGvEMGSJ/7cUc3KJwNVE2dS\nV+yKJyTnkbxpyYivVtQeGkmoCBmZvrlZwWIAm9MPXQ3TiApE0Ir4YI3pANoG\n1cIdUWNm5gKaUHqdhgyGwWStQRGXgcabKVrvvPYef+MdngDXX/ZYZLEIXvw4\n4AFMRPU7MTJVWCgiNlztKkwlP6RVuJSoyigVkilYVGF54JG9/Fuimq7gb7o6\nR96B1En63BySlm6t7/jpA839VtX/HkRC/lCSmiwchhRuhqDJIoOrZN2Sxhgl\n7YQb3GGLKPZtqpL+avRKB0HehZ/wYokFK4K/RKsWFnVK6T0MyogVEuf2l3g2\nv3UtB3KkSEaKzRqcSbyFkUywEwNypLeyK0zFgCORFn0vXNDv3VGrJQJeeVw8\ngMCiBkFeDg+6crClq7z4aZJeBWsjlEvBonWU+fdrqRJb6o33Ci2DYliiZVOJ\nGVZBMJCMb7H3kJRiiqfC6AZ9XnM0CcEBKJYhHBKx0RM1toricP6IihopINyz\n//M9\r\n=9kv8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"99690832f4933f306450816d78be0eec7c2b0ec6","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.30.0","@typescript-eslint/eslint-plugin":"^2.30.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.2_1588095876125_0.7486348850884972","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"jspdf-autotable","version":"3.5.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.3","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2f73adb07f340e7dbf22950e3e6c8bf853991479","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.3.tgz","fileCount":7,"integrity":"sha512-K+cNWW3x6w0R/1B5m6PYOm6v8CTTDXy/g32lZouc7SuC6zhvzMN2dauhk6dDYxPD0pky0oyPIJFwSJ/tV8PAeg==","signatures":[{"sig":"MEYCIQCX5RXCrE/PS3UxywrPmOK22KHLCRuzwml6kYzCOM2y4wIhAIrpC9HBiwX5Hv/97TMlAa5J8pGf7IEI8uAryb8x7EhK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqo6oCRA9TVsSAnZWagAAWdgP/ibX+QCyw8xjMPf5ru5c\n5/HkMKtFr/6qc/wCtX60onAL6rN0kF02+joXR6JycqXy0KeE4gkRUvwLwMm8\nigXQjEo5lLJl8z1B7kL4TXFyepDHHPNMLjpF4l75WIFUQ0OpA3AUBChIBRVM\n634wny5ch3YW5W+etFH5wVKethESbc4+dt/dtKbhygdEHoshZ9EM9xl22/CS\nhsAqkCWS+DaapLxbInWFcktCxsqwpe+em/Bopa9JIVy+srtcDv2wetImFLWe\nHjnLasTsLa2R0pw5ZvImNRAJrEI335oRJO05PFRasiGg/ch6DpWYFmxyjY3a\nG/bm5CPMPsOK9diwNGjTK7czbQm6wlk/jJ2ZZUGn/l021e4T5Pld5b9wFeHv\nxgw4lIShWUHO60MvCkCG25yKedpU5R5aGCjNThNxrIBpeebviUf0NcxicfAQ\nm20NEdzZQr3CbuFulckJsxgMBmkof+O2nVSlT4DYVe9w3It0gYEmMhapYpIh\nHTyUXC41wHG88iLCcPrj+x/iG6kE8G/psT2ujR++90JtqP/gtQM4GTqHqCMF\nzvoL9hJWHeDCXuiBGTBJ0OYcMIW5xTg2x17QRBE035hn0MMSj/Qq7TBVCarq\npFP+ahrG/NBxA8D3/90TgZZseE4kbybELq/kxv1J0VeDqMYkyr+GDh4o5Ws6\nRFnt\r\n=o0CZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"18e3fd7b56c99118a172e42da668a6b54cd4db7f","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.10.0","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.30.0","@typescript-eslint/eslint-plugin":"^2.30.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.3_1588235944257_0.32515023790031883","host":"s3://npm-registry-packages"}},"3.5.4":{"name":"jspdf-autotable","version":"3.5.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.4","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"99e6cdda753920a760f9481897d14bddb01943c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.4.tgz","fileCount":7,"integrity":"sha512-uGCZvblJHmGyTmhSiFbxsxO6RJTn/UOv2IWsKbBrInHl4ice7fONPHzB2Qhy1X4wGSa/Yn6ZeWrK8ODu9do+Nw==","signatures":[{"sig":"MEQCIHw00ptj1wSQNW2vo4qVoqXBCxBMhnHWHOwlzQT3oSa9AiAazUgzCbwCa+koiUUFB8I2fb20I+BcQqEy2gzCcSdc0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5ijOCRA9TVsSAnZWagAAjWAP/jC3cGre6IO/7nfXWFLp\nCzBwVA+aKiNcn8k7PQMcGkXdOQeciLcSiimVGeBJvqxjveZIxlskIEiZmFwP\nH8DLRLIyG7xSytqYcNc/ApQ44CJPeRQAGbJNpcokEIdBVpc4DaRzU/PUtBri\n5hlkoudy03cdwPAktYSum4xuEPqEbRTNtA6Qle3s4vjXmyEDqCOMVspatQVD\njFOnGb+6kL3T8mRdlZctXhw6rCuOdI5g0bP1brj5bYJsJqhxgYWOB57XakMk\nPo/8lktIxN6jugjJkw6H7Y5o85AKKwYFNo2uFJnO+SdFjbGzJ8BYnyLxmiN6\ndVPzNeGz77h1b77WsNd6Lagb9tRs3v0NpYWmnPGjw+jPHT/hNppUKxwji9Y0\nsgr4PhZ999U7D54VjT+gCISDqKjnxYKrGFjAqMHOtgWo9oM2DVkzSNoT5yfW\nT+G7ilVr9O71Wm5gym7x6PqwqWRkocZ1olhkqczR20qIFVLDa3tO3VX2hb3u\nbaOs4d4WQRf08WcEhU5D7zwMQkwxviuZuSXusllB7hzX2HHXn0xDUcYzTS4D\nVHJs7m1QVhWPsQwhv/HhZ2RLB5+uWjU8xNoFp6PfrfdN3fTJLz75DnjKmf3C\nrlG/2ULg1nWvyORSQZE+CoB0kAxIOLH58O9qDkvLYyuVodYLAZAhlYMEgNW8\nJLr7\r\n=u1Fu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"e3ff4559deb9390901e3a6d9b9be0f110d0006fb","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^7.1.2","eslint":"^6.8.0","ts-node":"^8.9.1","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.1","typescript":"^3.8.3","webpack-cli":"^3.3.11","@types/mocha":"^7.0.2","npm-check-updates":"^4.1.2","webpack-dev-server":"^3.10.3","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","@typescript-eslint/parser":"^2.30.0","@typescript-eslint/eslint-plugin":"^2.30.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.4_1592142030302_0.24766396080825226","host":"s3://npm-registry-packages"}},"3.5.6":{"name":"jspdf-autotable","version":"3.5.6","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.6","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e16ac3755a4e7a7c4707f9061048b6293c06f645","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.6.tgz","fileCount":7,"integrity":"sha512-zGfBp4vlTyS7paFQLuj2cQ3V32f+FdfI0LE8zyj5PB1KCYtK4XJqVu9ft/uCBOvmFtpVFynSbmzI1MjEDmLzDw==","signatures":[{"sig":"MEUCIAzEXlzv6XBMDTi7z3lkb8KdaUzs/8usIauukQn6GyjEAiEAn1Qp3i/FGhCuXGu8NH3VllKgF1LoPlz3vCArKRJ5PsI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8pEvCRA9TVsSAnZWagAAWjgP/2XMDSk5rHOg+9hs14ik\nuOloNhZleo/FHazMb9LAHynnGmIcbkZKZ72eTn5FpC36Th7NLtxfCWUGlG9s\nHGFlTUPActwvbZMoFIkhURy3vVC32FcovOi++hsd0dzMMx5+aUSp1LdygP/b\nqQKbBTZPIviR6K3Fb6SSfOjuKUxGyKPdJRcuZCtXD+pmq2rBZ0Yr0uHBCqjc\np2rQxXJPdpMLv8NroVuOwVpA2McUzhqeM1pU6b15Hgrnn8bJO045czjCfz4z\nZQxGRlAqvNFopMDBRQQgdbbiZxyEJTfY/37GUCYg/IDWTZujVW/TeVgqfhJZ\n+viIqr3LOogn8tMzL+z1Brmbj+70kLF+EmrWMoCN1gqH53cYCodQ46NiWVCW\nME3m9+9BVUUvHlLrk3tl0IfwMGHcJ3u1PMBOdWcI2Wm1v6esWlsPrCTvUFhD\nMKXtx40fErxCyCkuHp7evfE5UBJUEEkwUSYpSSHTGW8h+iKn1TVzzC7NwwZe\nk7lTuzlUhm90Om6OVLdFaYDhR+o2lAE0OXacfq3vBJWIeOcRCM4EXiaak8za\nXc0bQLSj7jqEwLdjX/sSlyhKhN3Vx2/3s5i6G5/xAj5MASHD+Bwy7wMOjRGb\nQwHuVjAchDiSVmxjdRdYbVhvftKl8+SU5genTwNmZ7/pSc8t1R9/M39UwtjA\nNroI\r\n=4sDf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"02f1e0385b6281838a90dfa6c1c196100b24d98e","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^1.5.3","mocha":"^8.0.1","eslint":"^7.3.1","ts-node":"^8.10.2","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.5","typescript":"^3.9.5","webpack-cli":"^3.3.12","@types/mocha":"^7.0.2","npm-check-updates":"^7.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^3.4.0","@typescript-eslint/eslint-plugin":"^3.4.0"},"peerDependencies":{"jspdf":"^1.5.3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.6_1592955183215_0.1080846517399241","host":"s3://npm-registry-packages"}},"3.5.7":{"name":"jspdf-autotable","version":"3.5.7","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.7","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"09732cf3e3e8af210c766f864c093c1d7a8fb005","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.7.tgz","fileCount":7,"integrity":"sha512-WoL6t58TjbWd8MGHtRhPZz68FgpS8t6PNpy0WBmCMmaGjYf5IoE5593mZrdNbGtUq6IhWCjtUnyB5jiO8pU6NQ==","signatures":[{"sig":"MEUCIQDUFq8mW6yf5iURZZxNa0qPNcfaocdaSIgLqzcfGiXDQgIgeb27/Go/GQJztzaeXHP+xZImtYHRu6n03hSSCHgbes4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM8+9CRA9TVsSAnZWagAAjfQP/im2xf799Aov3aJtmIjH\ntB3G1M1n1Dg3/6D+XYnANXGhs9m5V5PiCa+Mda+x6/jUNqoDS6Ybl/PlJQ7r\ncwvS9CGvFr09b7Z4AMMeKyQCJBsYX5pIsGFxDl6q0U3w94WmUk1NRkZihpSE\nTBzB48GHzcC0YhQqsz27TpzJy1Ee2TATR41zcW/wPZgbkWOsWIRZnJ5WLID9\n2fLTNdidNFmmFS9TWIR7fbMTtJWSOx8N4QEo2ERvy36gwbvdGWcZUkiZmCKr\n8Ian14Lh/rqm5yO7J8J1mPof4EgaxG8oOr4202tcd2axKdHFzu0FXdQrPQXz\nXH3GJRK7GT0d+fSRBFk5xqmXYo5+j+w5XJE5MT5wXLkACG02Oog9KFXw04Jw\nl3nXp9/7iOiWWtxXUcUeKg8PWwoN3+JM49zFH7Z+nfzm8X6xYhVvrgAn75E+\nQE++0/8pjcFxr0iCkIrdi+FypJYQcaO0ywXpvjPWV1IeMa0ouzuxYTMutknO\nlA+Af6tC77jMfzrsJn7TZlxjhBYysYMhu2JmqSVcEH2VcYOjUO5fga9n6rGt\nOdoMpPrDCF+Sbe574cuw7/R56EXT950tETHRSBzq+dy8QK410JKuYDt5Z0hD\n8zZGlE1EXrJeoDUdXw2x+QvFSrUapjg+p+kgnJxyKbkpb0QJW8XQl9affC9K\n5ZSX\r\n=E0N8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"cf112efa29379c6345000bf8e27e108cbb72a62e","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"ncu -u && npm i && cd examples/browserify && ncu -u && npm i && cd ../nodejs && ncu -u && npm i && cd ../requirejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^2.0.0","mocha":"^8.0.1","eslint":"^7.3.1","ts-node":"^8.10.2","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.5","typescript":"^3.9.5","webpack-cli":"^3.3.12","@types/mocha":"^7.0.2","npm-check-updates":"^7.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^3.4.0","@typescript-eslint/eslint-plugin":"^3.4.0"},"peerDependencies":{"jspdf":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.7_1597231036715_0.6328300815911858","host":"s3://npm-registry-packages"}},"3.5.8":{"name":"jspdf-autotable","version":"3.5.8","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.8","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"882a42c1105aa0f7be6ef674083fc2407a79bb9f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.8.tgz","fileCount":7,"integrity":"sha512-0KO3SlvOhXCYPA6+iF3jImO0Oxy666/nD7+eR0wa8yHFwjy820sv69Isk9F5n4FYzE1T3SrbGcHm3emDHRujBA==","signatures":[{"sig":"MEUCIQCccwCsD88PWzjCg2zEqoHEATEUV9FevP1lqtHIa8D5BgIgYyyB5UgRcz1/J2ak1O+E/bE/wafMT33hg8wMkS9wp14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM+IsCRA9TVsSAnZWagAAj3gP/RUB3YgMA9vi7Q8TI1LA\nhPSohpYrGkgrCmDb04X0oCjjYT2dgWEBW7HDRNgBVYs0QWP47yeOjI9bloEV\nVoA05mK9mpkxuMG7B+PDa70d3b9MWb83Lno7MvXpbAXemffwv19NpdPsU/5W\n0Txh+KOncMKJzBGM/mxtfX17WVZGRbwaNbvHzmfFaTiHDVaf5NAc1oob1Jbs\nu113T/QJJACz5fZuD58eGWiqRhPGZogHBMiEKPvFExrVZvTe8+jwBRi/AYmj\ndQ5K90LZrc2H1v0bYLbBrP0ed769pXZ/NPswXlyj+Zxy8KCYDqY+kvbwwhw9\nm3CkQ2osYQFmbxMrEf5hsJdbHXy8eAep7nxb7MB8+cgi8vLShEG6nAziQYys\nGz1WG6BZgPHbKacPD9Cm4Opch4QF/13hoB120eIhkkk5FEc6tpajuUUnFkOR\nlFf3Nwa28h1IOS5wXvD1vgz4/oVhw6sObCIK5R1OleJEZiNjM40p1wx8i3jA\nx0xYyMV+hwHvGWlTB49Tf6/4yVYMYXwfwyw82cBmV6OUzM7F0V3c1ZISYKRB\nkjB2Oe3nsdWB0W7AiZlW0N0OgkaluE1JTtpYdS9yC/zxC2brKkUJZcvA48ZA\ny4yhkiRr/H9d6OaSPFVRrqAUz+PHgdtRZiX+ICn6EcZkKEoIHFlLMNLNzH0u\nbHEE\r\n=3/f3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"96fd6652e1815ae8a2d4a1f12a79cbeac2a5daa5","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.2.2","jspdf":"^2.0.0","mocha":"^8.0.1","eslint":"^7.3.1","ts-node":"^8.10.2","webpack":"^4.43.0","prettier":"2.0.5","ts-loader":"^7.0.5","typescript":"^3.9.5","webpack-cli":"^3.3.12","@types/mocha":"^7.0.2","npm-check-updates":"^7.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^4.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^3.4.0","@typescript-eslint/eslint-plugin":"^3.4.0"},"peerDependencies":{"jspdf":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.8_1597235755883_0.49828189336537143","host":"s3://npm-registry-packages"}},"3.5.9":{"name":"jspdf-autotable","version":"3.5.9","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.9","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"8a625ef2aead44271da95e9f649843c401536925","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.9.tgz","fileCount":7,"integrity":"sha512-ZRfiI5P7leJuWmvC0jGVXu227m68C2Jfz1dkDckshmDYDeVFCGxwIBYdCUXJ8Eb2CyFQC2ok82fEWO+xRDovDQ==","signatures":[{"sig":"MEUCIQDa0IfeSqqmZHwxVGiG/uGoJPoLEa5X+L1QKoqyePGs1wIgVetl6f/LYHn01QKIg+OKCAXT+i2WP3yluyvhPX7uqEU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM+XDCRA9TVsSAnZWagAATQkP/0FNGzOTbWhttlxP5ZN9\nKXvrlqvUMColq2r9/zvaPpaWrtMOdEAK56BV3e7t6xwtjP8BGZ/Zio0nf0ZO\nMvGoEwp8+XP+6oaj9ws+H3RjyuJpSq2uTWgeut8IufSvRx73LlMlxHoSICcw\nrpV6eFVPlk2uOorAMRGT+OTfE4eUavhsFrbNkNMMHMjNtGjoMKVLPmip04om\nSZs2yLTE32XhmmnWbbCUBmpqFeUZdMV/CNBux/yfUxJxduJKrsVrFVP9i8gU\nVOXAawSceD7TdTfSTB8xdCbPuCAsw9wXjdi8O1/nO04DOxjkMqmOHsEzHzFA\nCPCk2aFNEMJPC/ZhuwjyuQhONJQI/VA+kpdXXsk2Va/yfAmIqAG8U5P167CR\nF5bulR+Fdk6j0fnZiiaToLJvQOoC1uy9z8UkX3wMLPv8ATIALTw31Rc9Hd6M\nQgboOsqk1tzWo5QZa+iHhAuXLSyg9a3pTcXiy3sKqquuPxtGF2xoyLoeyeGG\nyhirlLjyXIIOu73aqcCQvUMkBo6wbi2PChdYzLdx2jm9SDqSxZEPUYSNja98\nifWDiPCgKSKwi/wQDgL4SU/Eqrw3vqMTUBscqjpU0EcDgU0XaTDCymAJgyLe\nvIoVsvx3MWb9v4DQC2qa6X3hcWd90lY+YOuKhzHN+IC9hJGq4T1fIiQYN6ui\np+e7\r\n=vy+C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"e203092f11095cd43aae1c0428534079f475584b","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.0.0","mocha":"^8.1.1","eslint":"^7.6.0","ts-node":"^8.10.2","webpack":"^4.44.1","prettier":"2.0.5","ts-loader":"^8.0.2","typescript":"^3.9.7","webpack-cli":"^3.3.12","@types/mocha":"^8.0.2","npm-check-updates":"^7.1.0","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^3.9.0","@typescript-eslint/eslint-plugin":"^3.9.0"},"peerDependencies":{"jspdf":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.9_1597236675032_0.6011921721892068","host":"s3://npm-registry-packages"}},"3.5.10":{"name":"jspdf-autotable","version":"3.5.10","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.10","maintainers":[{"name":"anonymous","email":"simongbe@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"dac683fe374adb21774280387bd4dd7eb94b43d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.10.tgz","fileCount":7,"integrity":"sha512-B0PA+Lh2NYZEVhYW8nSv1Ft6aTqv6EGsy7qvTVCMeGDwMsmFEXreW1Z3ud+nULHAsjl8H69pgyx2ClBe1Tvmog==","signatures":[{"sig":"MEUCIBncjLdyiTPACbRMG2yZmn5GC7YUNqoRxNdR3tCqRh2iAiEAvNt6Y/NQ/S8zv1LlA+n/rPR1TQ15q/oSTWT7GPK+BuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfT2PQCRA9TVsSAnZWagAACkgQAJw5Z1t3iOkMx2+OcYQy\nDnBqbkgL7+S3LO+tNfdC/Qt/5durtzrsgzja6g0J1R002SMwGbGvK1QIIvZ2\nOzCPMYTAoM+Ic1MLrwzemZ4y0feB7MxwbV/K8bg3zYDLVsBgcx9iD7XQ8rXZ\noeYunnhSrMQJtlKJpybtIqqdZ6JdhDYqNkkc02YneCerDwJH4voQhdAqBoRD\n8J8CAnncUF6HQEZABkZeSuqTvi/wCH5i/4UXy90vAAjXucRQUH2h8sTKmC+1\n3SmhZFajH1054oMjDTFEpAn0dmOO/VxSvarpgF7qv7ZEE5Py6qt9rnrfHFGC\nyVds1XlM4qzZ/0uVBfQ//43T8xg1rfbof6GIkCyGoBTer1Nr6JS1cD6hWZQQ\nZrAxaxHkL27Kg3iokQ6oiSa7OeAr6euo++vYcbuyAu6eHwZ5yuv2OG3NAkfX\n+JYLLzHUEV8koHoHuR+Dx3NQGf3Xo+gtyA8Xr8W6vyFqLmGfrGnn3TW88e+A\nSSzXnD/uRlLmyeAWPWbDAMIpe+9vPe0zpFNXxmtPhwNDmcoZDwwqOSOeknXK\nDeMBE6YEh/HKfvvKzTOlJ0jZs1T6u/VdFVm6yKKRSzNfAXvedRT6bDypxHaL\n5ehQy/aRTWMvOxkqpP7T9lUHJhafKIdWUpQAu42rhxqa3KYwVegJU+u4rcg0\nhFMV\r\n=jO1W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"040788811f9ef2da3ba6cc6cea29ff70083b9e79","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.0.0","mocha":"^8.1.1","eslint":"^7.6.0","ts-node":"^8.10.2","webpack":"^4.44.1","prettier":"2.0.5","ts-loader":"^8.0.2","typescript":"^3.9.7","webpack-cli":"^3.3.12","@types/mocha":"^8.0.2","npm-check-updates":"^7.1.0","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.3.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^3.9.0","@typescript-eslint/eslint-plugin":"^3.9.0"},"peerDependencies":{"jspdf":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.10_1599038415822_0.21854020727006307","host":"s3://npm-registry-packages"}},"3.5.12":{"name":"jspdf-autotable","version":"3.5.12","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.12","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"8e8b1c5d3cad446d49bfaac685dfb813eb2913dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.12.tgz","fileCount":7,"integrity":"sha512-BH8xq+sA4SnZdH48LHhixzU3ZpqRsYp8Tb5aQeTwKXQjtZDGcmy7UPLQ7ihQx1WGFAR04fwOSRke294CpOtbBA==","signatures":[{"sig":"MEYCIQDzFrJBFwnBx2p8WiowrJUOXVcJu6H9On8w/QyOscryGAIhAPdkZB2sD2YTKI1OD39w45rkF0cqtZGmsbOHQamI9Px6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfV12xCRA9TVsSAnZWagAABG0P/R2sqbO/NYvjFR7eAalr\nAw8jLOMRf7n7A26a6DZf3QIljuqo7qso8Qxn7XURbOyVIIlHwrUVlT34yDQ9\nIdSEfdoHLi3jboquZRF0vrqK4c60v4s8q//e/sR7riKfKPfMpQ7/u2hnFtoU\nJuLE9c/YEbIIVC6CFags5na4MAWJHEKcRnlFOX61l3MJvMOqd2msfgb6/5hK\nrwCIWsTAovLyhlkMPx/UrERxZL/FW0M+LH+sY5CowuLfzQw6f2phejw544zp\n/NgExZLcDgEsI3I44chwZysS7CVwEEUxr5n5eKuWho5XP9QwctkrzuMcD4I2\nk5ulPbSX+Xw735TtVT1alU3C3Mu7gmjnuCFsCGt3i8/rMDXimz7ZMq2IiJyP\njrW/AtEXS00l+mGJBijHB0q0Kdb6ltepE/cJMBv1uJq/UfXFwQPAkpphCLC7\nnOHceDGxzCCPk/8EZw61WDYG6B5h/PaWSv77VL/SHNhLGhwPMtsrv+Qkd3zq\nSwRIw1OUv5jXnX9KMq6kyH5/2kIK7nzUAuL05vwM973BdrA74jUlCTEOEUxx\n29GKwnpL3MtlW1vR0q+PfycQfaYBOuQnKR1HjnI+cg6nt1k3BLkPBECc4tLt\n4f7xQnhYSlf5AkuetVbqF361Ju2vIT54G3bP2N8WGjnWqQQoL1rnA+6/U7j6\nIQfL\r\n=CR9j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"b8b090cc3afcd1f4068591a82e957654c6fe7e32","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.1.1","mocha":"^8.1.3","eslint":"^7.8.1","ts-node":"^9.0.0","webpack":"^4.44.1","prettier":"2.1.1","ts-loader":"^8.0.3","typescript":"^4.0.2","webpack-cli":"^3.3.12","@types/mocha":"^8.0.3","npm-check-updates":"^8.1.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^4.1.0","@typescript-eslint/eslint-plugin":"^4.1.0"},"peerDependencies":{"jspdf":"^2.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.12_1599561136827_0.9693343243619155","host":"s3://npm-registry-packages"}},"3.5.13":{"name":"jspdf-autotable","version":"3.5.13","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.13","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2808db99affc2fe2a6e27cb308bcb0b3d541c9bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.13.tgz","fileCount":7,"integrity":"sha512-0oF5eHefuBjlKm60tNpPMmMS2oDNhY5U7vPkMh+s4/JZbnSjsmcUcP4j2r3k0sDvQz4ysmAi3MoOii9niJn7Og==","signatures":[{"sig":"MEUCIQCk3UKP33Rf7JrTlVaZ2RRHUfXlAPNyPEOSBPnssAvzgwIgdwZjGuphUADH+hBy8G1IgmPWWtApF43XEXeqlVeZGHs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfY2vlCRA9TVsSAnZWagAAyvEQAJpucBTJRsp6hwdG/SUL\nnVoSXhH21SS27QvYieJwmoR4ENL1TuMuOxqW8QHqQyUuzwk0oGyyCh6pyReQ\nlIoJ3/NMZxgNOUXmdb4ESxhSJRSSDoTM+u8InzY78CPFFL0GEK3ICJ+1GvG/\n2v0xoohrBwmX5ZYMGXi4DphCXbpxnKExYpPZpB7utch8REOaeqYfCOKpkLOE\nGdsobx/BhXW0lArYrwdNjfXiQuA0yPawiPD2RFAtFnjRSatesqkc7qy2k/yV\nUvv8W15jssgquifr41tA4NysR/mRN/998NrcOj2BgfxdWplAgpBBrciGL1HT\nUOBl9pvccwIugaTrYZhRdCTA3kYmj79bmPI7yGfB06PbWZ7Nf6Zt202KQe7f\nobPBcvWVILTmsFHlAAocGUeYIUKL9pp64fXlKHjCJyWPrratoH67iWv02yEn\n4Yf1sLci91Rdjk01TqnwKqf18ksrl4w9HRDIC5cAVBDrJ9QAVSc7ah54sPWU\nIbJmw3N3yq21nY/sNQHiHWegvI9wBSZv84Gl5q9InZReAnLdto5u50mj2jrt\no4q2ZpXPRq1FYQs/pAusT6mEvHG4ubLkI5EMflHVSV2dvtGiZe2c1hpKscLb\nA9efufr0n8sNkuTOpjy4cR/TxqXYLcd2y/kMDlm55W9GxRgGKZhSs/ylxpFk\nGqvQ\r\n=LTfI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"e9e3fa48439e298d39895d0ae9451d98559fd6fd","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.4.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.1.1","mocha":"^8.1.3","eslint":"^7.9.0","ts-node":"^9.0.0","webpack":"^4.44.1","prettier":"2.1.2","ts-loader":"^8.0.3","typescript":"^4.0.2","webpack-cli":"^3.3.12","@types/mocha":"^8.0.3","npm-check-updates":"^9.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^4.1.1","@typescript-eslint/eslint-plugin":"^4.1.1"},"peerDependencies":{"jspdf":"^2.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.13_1600351205299_0.40533539076195746","host":"s3://npm-registry-packages"}},"3.5.14":{"name":"jspdf-autotable","version":"3.5.14","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.14","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"991a3ed87b6c881f91ad80798b6781a9bf98b4a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.14.tgz","fileCount":7,"integrity":"sha512-Qm11yQ2hTvM2iZ7MpWLpeDGR+uQlI8bcOsMjWYXon9mTo+UehMqp5xdQk6JpVSNUN6+rnJnpS5mkqelv4ncd5g==","signatures":[{"sig":"MEQCICjggC3e4ADnFU55tncJewWQGOuUidxl839SJQTpDoCrAiBJxnoF0wYBUUHH+OY/rY8pgMa7FNVA6f3JYeATGhOdqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":154880,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJmubCRA9TVsSAnZWagAAZncQAIALMx10cztGFNL1Q8wo\nVpB/dbXzezVfGyT4ZVbMKcHNRiRDKRDbKiLM14aaRU7LGqcy3xCYnLWk0ldA\ncs477SDBxOnOgw48XwRt4tth2mz/yHyRrpcI3csJmhZKNmDdtTNGA5dhWfDt\nhbZhWBE37wXFrT4H1pUoqkyRmSUqv3dxivhVAu10zm6g+ZlNuDkwqhREKped\nKiOH/SUqg/iK0zE2xiEKTySETUm+Wl+8U6bc0YHylGae29nRQld7sQJg7MVr\noDPPvzABOtX5Pl3eLlJDT/dUyDndCRRATAYU0Medfl34urq/NmY86ANTTrZl\nRnolh/lSR8wQaPtdmUuQdIz8eIpynoRyvhaiA0sDVGNgOaCmvaJw7LLXLQjI\ns01eJw9oNngAYBfVf08WRcghlGaWtzbZg8SNecHAXDniQhl9H7np/ib/uHEC\nJ9Heq2QRRHcejG/JOJM77YomRFf/LLveYiyk3p2O9iYoksiWy8+LSCqDHUey\njQSFYiI+c0CeT6sXIsuc8UHqzOyuK/A+emDji31t7CTbb7kM2ai9sYRSqMz1\nZ1gZ7LZt3E0ZyRrc6bDsbKUCx5XMTCOIcmQsm9HC/P56jM5S2hqnmzzENrm9\nuTgLBV4rdSGtNHRZ075/JdymIB8/u5yHiELh7XVrAgNrQMgpCjeSAh0BxSWA\netcy\r\n=j96I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"bff1a1ce03bf34d0ee8a11363523e5234aca59b6","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.8","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.1.1","mocha":"^8.1.3","eslint":"^7.9.0","ts-node":"^9.0.0","webpack":"^4.44.1","prettier":"2.1.2","ts-loader":"^8.0.3","typescript":"^4.0.2","webpack-cli":"^3.3.12","@types/mocha":"^8.0.3","npm-check-updates":"^9.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^4.1.1","@typescript-eslint/eslint-plugin":"^4.1.1"},"peerDependencies":{"jspdf":"^2.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.14_1613130650674_0.8873545812894101","host":"s3://npm-registry-packages"}},"3.5.15":{"name":"jspdf-autotable","version":"3.5.15","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.15","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"0d69763c31950db7e76b4fe0d5d24a19a9bd7ebb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.15.tgz","fileCount":7,"integrity":"sha512-TFDmrflPqfnI4Oco7noBVhWIozch/2bty3x/3iOiuDBBk8wGlmSCIEMYXhQJQ1/nk28cMROkHEu0b5j0O0O56Q==","signatures":[{"sig":"MEUCIQCK8xllAbcQ/OfNnxoqhTfcG71DWA6ZFlj23VjShpIa+wIgJnvv3w4/l6mShXREb/A2jA5Gn5SoWxMYFhcQY9ujFLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":158210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2bBPCRA9TVsSAnZWagAAvM4P/2J9g1FPVynUnUPXwzGX\n+JTLWTeIn6YEep3DoUXlyhL0cW+9H9iy5Y6UlIhblabsVJJUoWU4iyL8fCBZ\naBb81lfHxg71L8QojlsaowbXW8ssr+9RL0AJJKHp8xJaJaS1JMO0hlBcF4nc\nAERMUxmVFzzlMXaPSFltRDfI2j6pvM2+ecxRmXK2UYDdl6Qc1t71IGVQ8SCH\n6sAcrEdnDEV3WKkwZglxwr2jCukt7LowmLuqgQyYiqgKghQsHLi3qi1eYiE8\nzaYNGzeXDdYC3nVau63cI/D1OVJ9A64uJ94FmKQz0Qm6ZXETxFM/1j0PIGqr\nRN+rRsfahApnld6T2+xAd9hB324SuCcYg/QjC8tp16hx130KwHl+KAZWSXGd\nT5s7vaX1Xyle1/GkSDJ1efRmRbZOS1q6FCxku//HF7/9BDekeUvfY30Kaaay\n/8ll5JWxpE6GUcCHS9ueNLQCKS6NZ6ekWujka4zryuQiGQAs8DALpSEfFWGe\nQJCaLWPjqzRTnC2CziDxNBfTUHJEjn2MhDYfCUgqOD/6Xe6V+iUjbtzv0Yqs\nAoHjNez2Dwz7BTd8PbUwIyrSmEqk6MG+GFqw6rBVCTVwFtf9a7nSRXtXBo+R\n0h1a/o8SbqjiNBzznxIZMHz895EBEo8segRiSjQUO8pngcIO+vcKfaH9wHtm\nDJ1V\r\n=EiZ7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c7f7e6e41ea9503585a3530bf8e8e90e972f2017","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --minified && npm run types","start":"webpack-dev-server -d --open","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack-dev-server -d --open --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.8","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"14.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.4.0","jspdf":"^2.1.1","mocha":"^8.1.3","eslint":"^7.9.0","ts-node":"^9.0.0","webpack":"^4.44.1","prettier":"2.1.2","ts-loader":"^8.0.3","typescript":"^4.0.2","webpack-cli":"^3.3.12","@types/mocha":"^8.0.3","npm-check-updates":"^9.0.1","webpack-dev-server":"^3.11.0","dts-bundle-generator":"^5.4.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.4","@typescript-eslint/parser":"^4.1.1","@typescript-eslint/eslint-plugin":"^4.1.1"},"peerDependencies":{"jspdf":"^2.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.15_1624879182819_0.5749965439226761","host":"s3://npm-registry-packages"}},"3.5.18":{"name":"jspdf-autotable","version":"3.5.18","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.18","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"5f8f33bbe8a9ce8719a99ca0342a7171c56ce9fc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.18.tgz","fileCount":6,"integrity":"sha512-wc1/ye3pTECgyLD+drfG00QUuuWhetlwfdGZIZzDWKJWUmjVvZXPrsxxf8YPUvvWy7CwRdcRCGAGDEVQOdz5gg==","signatures":[{"sig":"MEQCIBROJuTFM9y+Q1PCA/m6RHvyaKebUYguLntMPDm5rjv4AiAkD3ipV5/cbJfTlkyCb+8FYYJqE5CIIL2TVa5m9Cwu4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHlaTCRA9TVsSAnZWagAAEYoP/0vg7iQ/uXpNUCUYv7yN\n6qjqJY2+UQ/XNP7O+zehdX3edgGmJOQ8XXaOV+/qdc+ZmOVjtWLn0AKDmIej\nM6PKovL9aciXAuatLusoKWeQMY/5Whe7uZRiFDTU+lhfLy0aFZEYIQgEnJi+\nyaFFpJ4G6w0HTmu7tS4qOSX6CL5Rur5RPf3ZOcpO2lTN/QB4h3c7NH0t3UtC\ngvjS1p/rOgpI3zPjIeniueESiQCf0jNEkRvNUxQWFcGU1uEtKWeIZaeTtRna\nU8pZTjLfujs5jOuGEecDucYi76fNj1yznum9yIdQrvKNb2sVcofbRMFXjKVd\nbDl28/LQfRObasKpLuBmYh1wi9S6JCHuxsksonI1OwSzWr28aBQ2EYb0FvIw\nuun28Je2ZFmBhAUF4I7pQXFlwkVX976s3tyOK/0rJ1V+4l6Jk4MTZfUw5JeR\nZiofBnjiLrUMtxaHvnPM/nx/8k/YSzfY0qDpnIA1LlErNngvL53/Ej2n87OH\nvY+/54adhZsrFNp3q7M8kpSbto1s76a/ZRlPf53m9IRIKZ5E2mGaVMs+Npja\n9sFldCpOFu2m/t8GAz9hsOXpoizkK3Rx/0vqgCpRjtGoR9GLpyYGR4gFuVdw\niJnzhZWIxD9ojkp+wdz45TKDY6UXa2FgDtmgJxhS/Ertb22GekNZ8hh/5Y/Q\nOZyb\r\n=RSFA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"2e0018b9a3b22faa477fc28bf80a15b29af207e6","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.6.0","jspdf":"^2.3.1","mocha":"^9.0.1","eslint":"^7.29.0","ts-node":"^10.0.0","webpack":"^5.40.0","prettier":"2.3.2","ts-loader":"^9.2.3","typescript":"^4.3.4","webpack-cli":"^4.7.2","@types/mocha":"^8.2.2","npm-check-updates":"^11.7.1","webpack-dev-server":"^3.11.2","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","@typescript-eslint/parser":"^4.28.0","@typescript-eslint/eslint-plugin":"^4.28.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.18_1629378195727_0.8065718244759694","host":"s3://npm-registry-packages"}},"3.5.19":{"name":"jspdf-autotable","version":"3.5.19","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.19","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"5dbc2ff2beda37f5234dbc0ee15504248f1a150c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.19.tgz","fileCount":6,"integrity":"sha512-R6sP5OCNG3HVBVj34o3QXBdYU2gw497hO4UXo2wxFk26N2sstVOljPc1nQwAmghTUjPCJXDN5aSznhLDSdHEiA==","signatures":[{"sig":"MEUCIQCjIHx+GifeeIExaeigxFoqeDMwffMeetsd+9mESZ56qAIgYHfjchPO0ZfHpDsGmezTetwbd01J0QfhLwHp+g8ENCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHlvlCRA9TVsSAnZWagAAcZ8P/i4JAYHkBAMvNH2qLgzQ\n1/9kRBB4RDYiAiUU1DSDelacfFdkcrTBzGl1Nnzr8CAvIKxiMQjMpTk5fMko\nmgJX1K4Wi7iXL4tlJeyYFV20Zb5b/1i7aZAnPTHXczjuz7bfiEXZgjcAEldZ\naDsYgGBwsZEA+D+UhsRgFlkQ7P2SveEUY0xprDk0z8FiK5ckAGf2pSheDoFm\ng6ceeGrqJjdZZMQ9hMY61ITQ+rZz1kxp5uAB+rJCuHZbZBOwC5V6K+JEQH4x\nX6F1VGjrcMGMjr/J15y/08jFS7iz1qxmcrRpzGnRl4TjeA6twhbuAPscAbSb\na5osNi/l5gJy530gT9De6beSPFbi2FPjbCCRsuJjIutIm1NWngUHfD20S8dw\nBBjlS6lrLfN1Y4Ur5gf5davhLwMXgzy25Co+t2WujqJbpBpTstLDQJ/qlnzo\nsQgPlRw/Ugaj9fJ1L2j9iI26BLQpRjtzKwY3ev5TJbrKKHM56AJR3ToJ8tkk\nfvHOHG777BZ9wA962xdmMYnS62D0TDWEdPcKwB9ZpHJgJhKgO7/sHfaqukRF\nCGw8PbEBeVwxQ0/0iMmlGtb1wU4GsR+lftHQ6EdQE+uMZ4+0lZSkJn8SlLp+\nCzvTFkgtKQ5DLOh09VkiFvvUB2hY9KqPVBFHTxZat/lietQL+jcAtel/O3PS\nXpmz\r\n=N1YA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"6dfd5f87f85376c33b879b5c059d2ead5813a3ff","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.6.0","jspdf":"^2.3.1","mocha":"^9.0.1","eslint":"^7.29.0","ts-node":"^10.0.0","webpack":"^5.40.0","prettier":"2.3.2","ts-loader":"^9.2.3","typescript":"^4.3.4","webpack-cli":"^4.7.2","@types/mocha":"^8.2.2","npm-check-updates":"^11.7.1","webpack-dev-server":"^3.11.2","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","@typescript-eslint/parser":"^4.28.0","@typescript-eslint/eslint-plugin":"^4.28.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.19_1629379557754_0.9947319770272671","host":"s3://npm-registry-packages"}},"3.5.20":{"name":"jspdf-autotable","version":"3.5.20","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.20","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"9bd702a09d7f9a839e1c320ca4ac5675cd4edd78","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.20.tgz","fileCount":6,"integrity":"sha512-FX43+hZQG9WXhD87oY4FsiaunA3d3FGeYFTx93LM+VXqBXIutuE3jmp1vK8oCVVUHohuOsi3Bp4/Li5Nko8EjA==","signatures":[{"sig":"MEYCIQDVbG0icMQ9Og5kGy5+z3pWdie8IibVw4lC/yu/nQXFXQIhAO8IJC9Fll65OxduQgpdkfiHBcoVFlDZ2qleT1NhZ2JC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHl0WCRA9TVsSAnZWagAAg/IP/jyu4YIRNQoFz5H833u5\nKqtVIzVvmaKsvM0qK/5JwzIU7fKMWmZiKlXHUvqHPU0JvtFXbqwLqJN7nAiW\nl/49RWp3yCVdJqPH8Jj3rKJCqe81x/GR/bAhBD8PKNwF+qNuK0xZ2qF/a2Qb\ndUZQdYC/YmIcrgsBbhr5hM4Yf0bBhEZiCF3U0eW13sq+siyIUpSSwi/np2bR\npvoYeNFJ65hlCo9rZNFPjFHC1phsx82H70+miK57puwWO+UThlKzXBb/uG3/\nH98gF09HTBNC0onab9XBesOl+Y6XXmpu0uxI1lHG7eziu/+V1ou9C9i0OqFd\nLIgw4gbE6lIRY1rLZpExDrK6bp1LJG1xTP0De548EdbO/QmSHBDjNTJTeWKw\nby0ZhDqHW79NsJ1KAtEoSBWW7AJQOC1RU3Lu7Dl34a38NLHCEzmVpjwvRF8O\nzXLevxPqrsWR56f7MTFsUwfrc2g8QdBxkhc0dxxex59TL1UbqQ479vbW+Mxx\nGWPY+3QmhyyOCR+xbZRCgBc89ZEj4ofkIa59HriQtcqxHrHFKW0UhznPJMHZ\nODlSHF8m2ZqnfgPzYsO0hlddouMUYje1eOYZLTu+rHXWV46LxcgnMO5D/jP1\nS2K86J+WaUECqdJj/LogYJ+ENAt0nBMrmyfWSoodBDKwCngLZBY02uPK74/R\nxIMu\r\n=eWU0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"8ff99e278dbea9704eb36e10825842a310c3adfc","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^16.6.0","jspdf":"^2.3.1","mocha":"^9.0.1","eslint":"^7.29.0","ts-node":"^10.0.0","webpack":"^5.40.0","prettier":"2.3.2","ts-loader":"^9.2.3","typescript":"^4.3.4","webpack-cli":"^4.7.2","@types/mocha":"^8.2.2","npm-check-updates":"^11.7.1","webpack-dev-server":"^3.11.2","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^3.4.0","@typescript-eslint/parser":"^4.28.0","@typescript-eslint/eslint-plugin":"^4.28.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.20_1629379862796_0.897389808008036","host":"s3://npm-registry-packages"}},"3.5.21":{"name":"jspdf-autotable","version":"3.5.21","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.21","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"422daebdca6fe4aa29e3e91dd40609ebebbeab77","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.21.tgz","fileCount":6,"integrity":"sha512-dSWBcqRAbwnmbe/Rr5Ri3xftBOZO0/lru/AzU80k5z202TXqbPrlW8avM36qZGScJ5UQuncmzAnZKbx8led3Ig==","signatures":[{"sig":"MEYCIQCpmS5nQC2ujC6g1T9yZfzYGSg2jbtCZWc9IwIVJqTGSAIhAOCFnfeBmqHJyu5Yi8tltmfgxuiiWt2WH88O9vkyahSY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95875},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"de786d004571dd55e38fbd48a42b5de214b7aa2d","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^17.0.0","jspdf":"^2.3.1","mocha":"^9.1.1","eslint":"^7.32.0","ts-node":"^10.2.1","webpack":"^5.52.1","prettier":"2.4.0","ts-loader":"^9.2.5","typescript":"^4.4.2","webpack-cli":"^4.8.0","@types/mocha":"^9.0.0","npm-check-updates":"^11.8.5","webpack-dev-server":"^4.2.0","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","@typescript-eslint/parser":"^4.31.0","@typescript-eslint/eslint-plugin":"^4.31.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.21_1634911535523_0.4035694765397697","host":"s3://npm-registry-packages"}},"3.5.22":{"name":"jspdf-autotable","version":"3.5.22","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.22","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"eb248b17dc8c9a8cdf2aa0627d2b888a6dbee9c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.22.tgz","fileCount":6,"integrity":"sha512-TMmoALEgwGJDzEjYzG2CFWCSFWskjIGSIpyODUzreNu+2wU7BxA8KQ+CQfIzkZMlrPjj6mETsz6HVbwD2B9xdQ==","signatures":[{"sig":"MEUCIQCtqAGiC1UbKP+vWbkozPAKzABQrinPPapu+gn2+MppIwIgRtu9u8knptfnlLXJecrSOlaMDqZHPz+AROhFqFHO0ZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95957},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"35b6b98257f74e51500ce11cb1a22744afad46a1","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^17.0.0","jspdf":"^2.3.1","mocha":"^9.1.1","eslint":"^7.32.0","ts-node":"^10.2.1","webpack":"^5.52.1","prettier":"2.4.0","ts-loader":"^9.2.5","typescript":"^4.4.2","webpack-cli":"^4.8.0","@types/mocha":"^9.0.0","npm-check-updates":"^11.8.5","webpack-dev-server":"^4.2.0","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","@typescript-eslint/parser":"^4.31.0","@typescript-eslint/eslint-plugin":"^4.31.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.22_1635000726329_0.7716680979791399","host":"s3://npm-registry-packages"}},"3.5.23":{"name":"jspdf-autotable","version":"3.5.23","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.23","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"c46448ef93b51fc958feb6a2974257dde63c8f79","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.23.tgz","fileCount":6,"integrity":"sha512-uIYxQsdKrDdbhygEFlbTVoaxawZMZXMasAOryQ1oMFTragcxLhhWIfc8peLCBXuB7fJ5SICtPZ2De7Pk7eS8SQ==","signatures":[{"sig":"MEUCIG6E0da7f8FeiFZtlNWi/NXUmSsbgwgUEDPoriJx0MnTAiEAzN0Yh/hDDrfo77/kGaMfY0P7wf8mNdFxai2kUgcId1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":96113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2wyhCRA9TVsSAnZWagAAvGAP/06Dz2htAoAQC+1LOFcC\nHmeHaoLTkF165i12awrd6NGW5VuRgOsQCeQWP4BaFwCd3urzMig9+Aws8KOb\nB2mDz06eqZx1JENKWGup7Q5cWdNFRGEck2xr7GK/ROexo4GGKo2tacSHUF+Z\njzjagmi0pRI1ukzfgvfbVE1m6SkUuBQlNIzZTCBnYzpw2Z6JutN+XYGW1zSd\nPYyBe5SnvPeQkrecnlixjYN0mFDiHNgLwRdW7YNwAK1rScTG+Vz9KLA9H7g7\nLwMifj8ZxF5YCq3VkOUEoLrZaJt3EhKLbVBG9OpG3SXQmn7bgMOQSgiB6eSG\ng6bDgJoPwLVAVIfLiyVrpvMbLhJfKaNj+9yi+PLkZRE3MPvn1JDoDh2d/1zX\nYUof6KffI0mWSW6ab45/M1JdwmjSvBgTEjjLT7mQPKfRFWQJQWq3ZKUKYxzv\n8UdX5KSAUCZs8NsLEQYtK3dDvVhnYCpu3BZwQHf+ZHeBwcYJOUywyY0ioLCv\naxisJs8V7b64qn6qhzBRJPklC/yzZO9lbur9JkhPj6Zbish4q2Smp71w5ORy\nGTIL+kWqvKdfU0MSR+O9+mx3MK598mvqdmhHA1mYkMyHENciiiiX9ktVZ9hN\n5Ae5SHLGfCqzvxFWCDth+bUJlMvfn/SXVKGJPFSmTh1bNeBbWPDjevVzbOSX\nqicq\r\n=hhT8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"89de524c5ab36c0b086822364a15767764184e68","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"6.14.12","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"10.24.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^17.0.0","jspdf":"^2.3.1","mocha":"^9.1.1","eslint":"^7.32.0","ts-node":"^10.2.1","webpack":"^5.52.1","prettier":"2.4.0","ts-loader":"^9.2.5","typescript":"^4.4.2","webpack-cli":"^4.8.0","@types/mocha":"^9.0.0","npm-check-updates":"^11.8.5","webpack-dev-server":"^4.2.0","dts-bundle-generator":"^5.9.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","@typescript-eslint/parser":"^4.31.0","@typescript-eslint/eslint-plugin":"^4.31.0"},"peerDependencies":{"jspdf":"^2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.23_1635150377334_0.9462973478719228","host":"s3://npm-registry-packages"}},"3.5.24":{"name":"jspdf-autotable","version":"3.5.24","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.24","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"993822d1aed091a95458cb5b3a0025e039967d2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.24.tgz","fileCount":6,"integrity":"sha512-RbsFZcsEGN34KWaiXADK8CGyivAx2tmvIXgQze7vQn/Y9YHVPMMVhEBKwIVwRzXQMwEL0pCdA6mWPG0676wHvA==","signatures":[{"sig":"MEYCIQDoBMn9lbVsgMGLBQaUCRUKS/DlyDNwfQ3jbJPv7jZKgAIhALa5zCNHH6Wi4w91vwDiys8rKxn0y2SCgNoqAKNFth98","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijhqXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoaCg//T6oMjd11KAV81fG0gvv2gY/c2QAGYN31FliUefOptIv99OK5\r\n6zyyPMlhqWTLZSMXsdV/yj5FXweysaXe3MojeTecW1vrYIu43xfFFkJtAJ/2\r\nBx05grQbINOYyNzC11+eJAyREVwrHm5VWWDxTSZs4wpdqAWg+07cFwIV+4K8\r\nBMPnnwm3WJO53yuS1gl/X7LJiYLGNxudHfzhP4y1YkqSVbww+tT4OkXvtltB\r\nrrGXtx0yYxXAD5zMcmTrVcFNsKWHbXvSL3L4jXnrZwHafnpsGnS17PBGkHTB\r\nFXft3MveDPE+IBBDVHX+GJSDjuqz0qBbKDJBcB0jNT/D04O+QehEpAWICvUB\r\n6O2t/CWllxn+7bpfGyEGhRxP+955EROIrWKoJRs968Y11z0vcw6meqcSYR1x\r\npS/1zRk0PvFOKw4JtLZQSLK5SGZihNShEjgKZhdDew48LrW+/JjjVO0PM+JL\r\n1XVGnRssXI8j1n3E+Awz+6Z8MH5qJNuQOYtRfbEO0hvN32oyDSAj76qcySv9\r\nMFCoRGbXNnDRXLW557A72+2s86vMcF1NUFVXxI40eDbAXtDBfySNL4XeR4IN\r\nfRG68ZBLJRy3RcoiVabwPYiYTpKF7dfFTLoGpZlRmy/xp9EjTI4kmOnbyT2V\r\nRbZM2ZlMY27HQIYKK+NQlyk1XniiBmFWdws=\r\n=gI74\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"c4d8f6e54d6fdc35880069d03aa9df30b5d71425","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.5.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.15.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^19.0.0","jspdf":"^2.5.1","mocha":"^10.0.0","eslint":"^8.16.0","ts-node":"^10.8.0","webpack":"^5.72.1","prettier":"2.6.2","ts-loader":"^9.3.0","typescript":"^4.7.2","webpack-cli":"^4.9.2","@types/mocha":"^9.1.1","npm-check-updates":"^13.0.3","webpack-dev-server":"^4.9.0","dts-bundle-generator":"^6.9.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","@typescript-eslint/parser":"^5.26.0","@typescript-eslint/eslint-plugin":"^5.26.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.24_1653480086772_0.7367384181792875","host":"s3://npm-registry-packages"}},"3.5.25":{"name":"jspdf-autotable","version":"3.5.25","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.25","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"c87faf474d3b4e3fa158c44b70af5dd07d37a02f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.25.tgz","fileCount":6,"integrity":"sha512-BIbDd/cilRbVm5PmR+ZonolSqRtm0AvZDpTz+rrWed7BnFj5mqF7x7lkxDAMzPudLapktHUk6cxipcvUzal8cg==","signatures":[{"sig":"MEUCIQDXmK+6knp+WLLGD1/nmqTSu7RD1jst8zL3EyS3MFZeAwIgKZVM35ZHal82PqtDQeUvug7JCFnK+upj1Cq84EaMd/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":150266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimbk7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohWw//VwGvXWyHk9pmhRaDP2UfZyxVUuCEWnIAlwPtIyBxovH5Ge3f\r\nQTvuP/h16xx3nCbSvJciqJKOfow6u4o4ByEtcKqvI1wO5kcioWOZ06/w5VBh\r\nrLr0Bk9UZdKgjneqbh3ws+JzsnD3z2lU9EmJGnt/ldIBzvtjcfPQOQCbNKG2\r\nrLaIIDSEDfPcIg2LGPE63eLlBlTPZiUtrBf8b5YGMzOLrHkdy57QA/Q06/35\r\nO3a/bnlknr6z3Hs1482heN5ik3rqKrNSI954xdEYq50zybuhJSUU6o9tinvj\r\nqZrVlQuSVrttsbJ4h6uqyNXxSlX6zf7mwH+3wvtz/4MNN30aLp5zUcN7fwT9\r\nwNplRVb1AQd+Upy5EDA6hi1j1s/AyIEQH6HbCfNfCXdaxjCzCG7gN9cJZa9F\r\nCuxD7Y0Pb8J+pi6gKofxMQDPGrZc6Tgdw+5zC6YXh5/kGOzVDO62IOhyXpO9\r\nyFYLonP5ZQ2ikvIjr14GL7HVMPzdf0jIpBKiGf46lyE7BxJO1kFlt+J1MM7V\r\n+H1wTP37zIeRx3bNuwQUdCeE/etjgpXSUDXSqSgsEo9FvOt2OSJCSMQriuzd\r\nBYlAtw6UAszCW+XTm7/HGR6iboZj+bU0S8KvDmuo25vbvfeDTPpVcEfHxdfd\r\nKmjZ8GoyPk+aZLJ8LxJUzHaXQvZoOjEZ5Pg=\r\n=/NPQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","gitHead":"d35ff8b24a4e6c808162f8e3d93211632bd62aa6","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run types","start":"webpack serve --config webpack.config.js --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.js --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.5.5","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.15.0","browserslist":["last 2 versions","> 1%","IE 11"],"dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^19.0.0","jspdf":"^2.5.1","mocha":"^10.0.0","eslint":"^8.16.0","ts-node":"^10.8.0","webpack":"^5.72.1","prettier":"2.6.2","ts-loader":"^9.3.0","typescript":"^4.7.2","webpack-cli":"^4.9.2","@types/mocha":"^9.1.1","npm-check-updates":"^13.0.3","webpack-dev-server":"^4.9.0","dts-bundle-generator":"^6.9.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","@typescript-eslint/parser":"^5.26.0","@typescript-eslint/eslint-plugin":"^5.26.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.25_1654241595491_0.06501725701681194","host":"s3://npm-registry-packages"}},"3.5.26":{"name":"jspdf-autotable","version":"3.5.26","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.26","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"88a9beb6adbba37f739099331c415662de19d244","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.26.tgz","fileCount":7,"integrity":"sha512-HzK40ho6iiackKWaKmgM62cNpTCu5N2MkpRMto9TpK/2CRIAcaPwR05IGw0n5pNRv0iAPbr8QtlntlzC5iJxSg==","signatures":[{"sig":"MEUCIQDzVduAuV0rJw5EZFDEF/k0vnuA82HTEKt7Zr+xGXQmgwIgAQ1nni2Z9oJs1Ipo+LbU2TRquEeLze0E3ejHXN3TYp8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhoTrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNsA//e6i4GwUoT3WUuXLp8w0QIQ2Zw8JHbyEvI3mJiPB1vdYIIhOX\r\n3MvsZ0VhAyFxo9rN9ryCV+PYZ/OA0RTbwnL/ho+zMaqoiFDPInBSLlg4yDYX\r\n9PmI+GaHTIRlMOwkraEmE4QOgRjvmdLJEBMqtWpTD5dJ1duGM3XHz3kbQI2J\r\no4qGIfzGa3g8/Pr2HFh7QiFfJNVAMb3nzZRcg5GBV75gVlYeskcEr2Ruvuii\r\nCf/sFHlGqMITaPpKGTiERMLpJsD7HCtudutgPXXSNxX/90UAMcfUpt7DKIrq\r\nwwJwh2E29Z/T8qVDPpGZ8SuGI/J3KKpsZ4Z26xsM+E2VLD3+cCQpqw10NRB0\r\netviVO0Szapu0aPi/8QlDABJ77PWYXmZL9qCwd2big0ydQRzXvymAM6QPckC\r\nYwLSOrbARYzsmub4kHZFdOPDLm8aRcfJ0cL6bN+idUn3gh7AKYnP7ps/6yYi\r\nQouAgHKsfJ1xX4Y4jeQ4fujSv7DhOMznlLf6hvOVVG5a0S2m5rX70QCFtWlt\r\niODg2TlqYGH8MtURYVcJhys1LPhkZOwEjL7rufupjz/ktD8TTIKQX6ZZxMVK\r\nkRhGjRtCtGQMYIb23I2qHB5fnoqVuNN+EVzXPKVdKHbnlDbXvrJO7GDAy1ih\r\nBvr3PbnSxNUbYCr5/5r2Py1d2v1Nk4hcTIU=\r\n=V60d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":"./dist/jspdf.plugin.autotable.js","./es":"./dist/jspdf.plugin.autotable.mjs"},"gitHead":"f585eae99054011d83a022d2e6e1aee6725fc6ff","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.18.1","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^20.0.3","jspdf":"^2.5.1","mocha":"^10.1.0","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"2.8.0","ts-loader":"^9.4.1","typescript":"^4.9.3","webpack-cli":"^5.0.0","@types/mocha":"^10.0.0","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^7.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^9.0.2","@typescript-eslint/parser":"^5.44.0","@typescript-eslint/eslint-plugin":"^5.44.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.26_1669760234812_0.9196869496984443","host":"s3://npm-registry-packages"}},"3.5.27":{"name":"jspdf-autotable","version":"3.5.27","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.27","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"80039f8436ce099b645e2ab90a33745f80735383","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.27.tgz","fileCount":7,"integrity":"sha512-v/OL1vZmqhOTzLgvQBiqG+j7hE94869qL5cAXF4/wkUT30+RldPUwtbcHaxzEqVmq0+vSiu9/V80CxKsDNudCg==","signatures":[{"sig":"MEQCIDq248AGFp3C9WOOnPAXV3a7X4DjVkr34dV7DuWi4a9dAiAPgtE6kExO8WzchkuTbETjSHIcE/IGO4NYNCAiZO9Vkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhoVNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRYg//WxjSjFHnU2f1WLWUSxJrOsTmfx9nVRL8a6pj0Lrsa/DdNU68\r\npbLItHbjRtaLcHl5Sd/GUbby/AF6aobHEV9fcIi77joA2wPP610P7xzN5wgp\r\nuwE6NuugoVjB6n8r8+JNlXQUFT++v99dNLpqMrVpgmbAPjZ9G5jZ6kBC4oof\r\nqD9XxO5iIA6HBPBRlcA5GpsSRlfaWfN75hX1fKYnEZLdU7d12GaP4s1Ds1Uo\r\nek6F56Qp6VrGxAXH2ox/fGSBTkqdTiwV4BwTimM0ARE63aFMgP2FL775Gnrp\r\nvhGpKcqIkFNYUspeA6jWWnHOg/3o7OjeLKCva2pPHn8VuzYTyoeKK/uijM8E\r\ntO/99PA2j7YiQRb5R20rttpeHEytHuUZ1ZLHK6V0VAKJftgPtz5lPVTdB99g\r\n7dKgTyvpUqQFzGDhCKdIeS1klACixEIeVwuGXWIypuRpukAT73i+QTYUY8Nc\r\nlH4lFmQ73J55SZLcsAn0UyJxWvM7HvNRl+FxcxiNvZJJMZPVTQN6R/IrR7O3\r\nyjGWG2WSpomqxBRWEWEvdtLlI3rAk4S3hqvgrwe895KxEeqwaW1x9QbCelNs\r\ne/Bu1hUGoma79uyAARJKBeGwkx9zt3DrSWnKOxaJHjM2YswDqtzIhK728mW+\r\nuayCPsw5HCDlVsMjLS90dV9nKa2E2WC9Nxw=\r\n=m+HG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":"./dist/jspdf.plugin.autotable.js","./es":"./dist/jspdf.plugin.autotable.mjs"},"gitHead":"49fce834ac27afe3e80c866d8d7d192342480f2a","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.18.1","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^20.0.3","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"2.8.0","ts-loader":"^9.4.1","typescript":"^4.9.3","webpack-cli":"^5.0.0","@types/mocha":"^10.0.0","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^7.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^9.0.2","@typescript-eslint/parser":"^5.44.0","@typescript-eslint/eslint-plugin":"^5.44.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.27_1669760333381_0.4173456191139042","host":"s3://npm-registry-packages"}},"3.5.28":{"name":"jspdf-autotable","version":"3.5.28","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.28","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"5463acbfa7a5b182453afea8f8aeac48bc96bfdb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.28.tgz","fileCount":7,"integrity":"sha512-eNYt5mUxCGa1Y0bmOhGXU+Va/P2jNkgOgUPGIpZp2rbZUauU34s0q3S59Jps5zi2u90nQy7DmD/D+sdesJLIEA==","signatures":[{"sig":"MEUCIQD12j1QpIQP6R6S6cwXmhATcM0ULqcOX8qx5UKytL8z2AIgeXPHhcj2q0X7JwKs5as90C2u28RHIBjKEEXIJP0euRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232897,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhyFxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJ4RAAiExxuCMwzHcJa6I6U4mno6HFdbJQND2TbGlBBOCawXFxrFWA\r\n7QKvlUS0wp6iwY+X7VVYKYjtBU2aZ+yasoLmBlxDBn+VcYfxS35wmdw28RLA\r\nfHRH1OXEt1c+JeVNey4LdbGxY82O0Hm+qSAFzzd3b2Ub0RQNipTvCT1VwxrF\r\nWNP/8KHVngJxWNHrqkgQjCXPL2JHoXiD8FlstmIB32Hy0FmpX3oB/iZg1rVX\r\nm4bcCdMkJBNrZgPDi06WuVb96A7drdBgw7vyotaY1KbSdw26TnIc2D7iC0Pe\r\neJANjk64h/C13sywS4irmJ5yt1hqZDhgdi9qOgrTaXK2Soyz/I0VcEJmlTSb\r\nHjm4OzA+YawWZuJGJaZj9M8Taef+zKa0wLI/BKj8KNfKpD2HQllzwTPrYk7N\r\nACgEdnUvrxffSsEZpZu1EKHsRBGutI8LtdM+gR0AzEAT9mrQkLzNeE2gg0mG\r\nsu0Dq8KpGF1mULevVX5M0jzvKbPrXOVBmSv4EzfVXK+ZH9yquhbBPqOQ3ZQU\r\nhttDwZE9hMhRwAGoO0wSmaX1GJF+KqvfiQ0UJUfutJvIXiMgQTBp36gqHnAt\r\nDEhkYN2jZmrLe3SHohKlJessawQrKjuLOEahjak+SWPHH5GOrr74yUe1iBlK\r\nP0ozqjPPr/E8Ky8vbTlH8AJ7EBDUtkTn3TQ=\r\n=DZdA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":"./dist/jspdf.plugin.autotable.js","./es":"./dist/jspdf.plugin.autotable.mjs"},"gitHead":"c0e5fa62654b1a3ce4ffe645c1bb4d2c9295bd6c","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.18.1","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^20.0.3","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"2.8.0","ts-loader":"^9.4.1","typescript":"^4.9.3","webpack-cli":"^5.0.0","@types/mocha":"^10.0.0","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^7.1.0","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^9.0.2","@typescript-eslint/parser":"^5.44.0","@typescript-eslint/eslint-plugin":"^5.44.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.28_1669800305472_0.44873142670295807","host":"s3://npm-registry-packages"}},"3.5.29":{"name":"jspdf-autotable","version":"3.5.29","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.29","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"3337287086223b7109fad6d737e252df0257a43b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.29.tgz","fileCount":7,"integrity":"sha512-LCQ/FwlJJj2U9IEfjSXLmPk0pXizjJPBd46UpS8JysmU8nK8GnKRvbhct3bL9F014OO9wrssqSsRvuprRDd0WA==","signatures":[{"sig":"MEYCIQD7RBJi+mTeQi/AbTX4rQ/UK8gg01g/apBBG6q9iVjk8gIhAO+yEl/zpI79zRCGRc8iwD1SmDi9mkP7tAlBpJR12ytl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":237142},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"d13bccaf9505a17ccd434c8a351bfff8c199dd34","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.0","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^20.0.3","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"^2.8.0","ts-loader":"^9.4.1","typescript":"^5.0.4","webpack-cli":"^5.0.0","@types/mocha":"^10.0.1","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^11.1.1","@typescript-eslint/parser":"^5.45.0","@typescript-eslint/eslint-plugin":"^5.45.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.29_1684620834791_0.6888141069548379","host":"s3://npm-registry-packages"}},"3.5.30":{"name":"jspdf-autotable","version":"3.5.30","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.30","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"95bcaedc812a43238305b2a5de562c701b2d4cd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.30.tgz","fileCount":7,"integrity":"sha512-JVZCgrRI8fMypobL64raXHo7Yxy0Vkn2S4CyRzFP+QyPD8it2e84XjsqkFWuXdcJ95VxMRoNrO4GGeCdh3bcCg==","signatures":[{"sig":"MEUCIQDh8sQPplleYdPrj+C77tIlkkenGEIZsozPw8vHaNyNSgIgQO7H7NuzoTvIG7N1gXLZnFUcjR7QcuOAC9cg7fBW4A4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":240082},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"67f41754811fe326e7e0558ddf805e0ea1a7c175","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.1","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"^3.0.0","ts-loader":"^9.4.1","typescript":"^5.0.4","webpack-cli":"^5.0.0","@types/mocha":"^10.0.1","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^11.1.1","@typescript-eslint/parser":"^6.0.0","@typescript-eslint/eslint-plugin":"^6.0.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.30_1689257057149_0.2595601079502925","host":"s3://npm-registry-packages"}},"3.5.31":{"name":"jspdf-autotable","version":"3.5.31","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.5.31","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"95f0d113639560ba27339e6eb9e2601881839bcc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.5.31.tgz","fileCount":7,"integrity":"sha512-Lc1KuLGDQWW/5t57Z/+c2E94XQV3jV2QVU3xMRiwvcm/nMx79aCkpPCsxLzJZVFneZvz4XoA8+egQR1QajYiWw==","signatures":[{"sig":"MEYCIQCFW0NIR+X297gNhSnC4ODR6RpCArKirPfbjy87PIx2lgIhAPJqtya4JBTLtDsiXVNpYY2LGzFyyeIUSwCCOuZ32bwg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243216},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"56a045ee88a100d4c9aab542fafa530f563010ed","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.1","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"^3.0.0","ts-loader":"^9.4.1","typescript":"^5.0.4","webpack-cli":"^5.0.0","@types/mocha":"^10.0.1","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^11.1.1","@typescript-eslint/parser":"^6.0.0","@typescript-eslint/eslint-plugin":"^6.0.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.5.31_1689321645326_0.6275579147193577","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"jspdf-autotable","version":"3.6.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.6.0","maintainers":[{"name":"anonymous","email":"npm.simon@mailhero.io"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"204157fba3dc0cd8a0ad4e28c47145b418102923","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.6.0.tgz","fileCount":7,"integrity":"sha512-CxO+/WylWNpwEzRLoYXrBoYpv+GeWijZFn2nqGevzMaqqMr2acC5eRgBCaBNtoipzpyfBFbCdG/UsG1eonoLrw==","signatures":[{"sig":"MEQCIF51NvmnU5QhcwmSnzB30soNFE53mWSj39IAPNCoyZ4IAiAFcza6eZkLLwX6zWV1UFHuGKAbKUiG7AVGyMSWBZqKZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245171},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"90a2c878d4d6946c16130fe9ed933e7d739ee7b7","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"npm.simon@mailhero.io"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.1.0","tslib":"^2.4.1","eslint":"^8.28.0","rollup":"^3.5.0","ts-node":"^10.9.1","webpack":"^5.75.0","prettier":"^3.0.0","ts-loader":"^9.4.1","typescript":"^5.0.4","webpack-cli":"^5.0.0","@types/mocha":"^10.0.1","npm-check-updates":"^16.4.3","webpack-dev-server":"^4.11.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","@rollup/plugin-typescript":"^11.1.1","@typescript-eslint/parser":"^6.0.0","@typescript-eslint/eslint-plugin":"^6.0.0"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.6.0_1692875310413_0.0553856732178144","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"jspdf-autotable","version":"3.7.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.7.0","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"2e14d90eeb1b692f0c5a33482f37c7c9cd41d9f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.7.0.tgz","fileCount":7,"integrity":"sha512-K6R5U4W4E2RoINRMUvcAKmTwGMyN5DE634G35dcXyGuqzhjY4AgOBDss5+M91HEznvZ28k7rk0gAo8WfeDIXLw==","signatures":[{"sig":"MEQCIAR4s/j/F5Ms1z4FaxjWqVFXI6TLzq7qN+wle41sYJ6zAiAhjwEFFsdKqQ4ddSd6Q4pDUG0QlbRij2zyVQqBfIFn4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243997},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"1dc9427d3472414c7fd1c8759e9e13d3670a9b5f","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.7.0_1696954857823_0.9326969469440753","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"jspdf-autotable","version":"3.7.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.7.1","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"9fdf74963a86c36e101beed5950186316d4f44ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.7.1.tgz","fileCount":7,"integrity":"sha512-5fgjqE8nIwUoNz5l/i/aD/uONKofE4yp/kJ097EKBllPVTPGnGV5OWHld30db3+CvNrgzrRl8gmTnKF6vag05g==","signatures":[{"sig":"MEUCIQC3WUsxJ99fO6lN7aYcFcRw3TKDNQxX+49dUS+/P/PHIQIgQex8zJ5Owy8FxTeHizfIijmkfO2dVG578DMHQl2eTUc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243558},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"16b9a37d5d2f88c6ff39b03349adede17b71ec90","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.7.1_1698850980919_0.9509849564042017","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"jspdf-autotable","version":"3.8.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.8.0","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"b324c6b3ef198bd634255db829fa2a7a563cecad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.8.0.tgz","fileCount":7,"integrity":"sha512-qNPLTCaslDoTY/IF3+3hZ7ovD0uIX8PKq3urQUDyIYgccXBfRBSlSji2raV2Md3DMHcm9tPWWj+9tl83K1pBvQ==","signatures":[{"sig":"MEQCICtBxBeX+C06ZJPNRe18avwSo9XWz1LRXHIbHnqt9WtMAiBBqAbV3lVfG9RQ9OaXB/ATtr+4kzPVJAJHCjj238b5mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":250758},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"6181713873b750a70f3f243bca3e2fbadc858d45","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.8.0_1701776216175_0.025203920195079776","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"jspdf-autotable","version":"3.8.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.8.1","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"e4d9b62356a412024e8f08e84fdeb5b85e1383b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.8.1.tgz","fileCount":7,"integrity":"sha512-UjJqo80Z3/WUzDi4JipTGp0pAvNvR3Gsm38inJ5ZnwsJH0Lw4pEbssRSH6zMWAhR1ZkTrsDpQo5p6rZk987/AQ==","signatures":[{"sig":"MEYCIQDPVcowa+qVmSPRVr5LqGnti7eEEj2iSZt789oxmaMdHAIhAOic8Xl8imQk5Ite43f5MLb1Ku7uIpbBBXPxcM5LIwLW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":252000},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"eede7169dfe591926368994f6114767fbb74e4d4","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.8.1_1702282146587_0.19755563845638058","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"jspdf-autotable","version":"3.8.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.8.2","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"44d4c4e18494ccd6e31765e4d2adadda25b9713e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.8.2.tgz","fileCount":7,"integrity":"sha512-zW1ix99/mtR4MbIni7IqvrpfHmuTaICl6iv6wqjRN86Nxtwaw/QtOeDbpXqYSzHIJK9JvgtLM283sc5x+ipkJg==","signatures":[{"sig":"MEYCIQC1r443kmmQJ8yabxdnlRiN8hiVimcxDyjYPpA9DMPQWgIhAIrDEvj/m02gUsn9Djnzae2pC2MEpk/BpcfTM3CIvsLx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":252983},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"9a40cfb035823c02cab9253e2443f919e7147984","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.8.2_1707752712974_0.4842917167020626","host":"s3://npm-registry-packages"}},"3.8.3":{"name":"jspdf-autotable","version":"3.8.3","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.8.3","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"b469730c28376a81298d04d18136f1fb464cd4b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.8.3.tgz","fileCount":7,"integrity":"sha512-PQFdljBt+ijm6ZWXYxhZ54A/awV63UKcipYoA2+YGsz0BXXiXTIL/FIg+V30j7wPdSdzClfbB3qKX9UeuFylPQ==","signatures":[{"sig":"MEUCIFbI9wNWGYU9OnFKsQCjzXNMqfsczBJ/8ZdGTMeBhjuwAiEAo1eQpUD95IDh1yos67AwmJ3Wq5cmYM4LFJF5iXY/SZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":252888},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"9748a8f09654ad707f6c4619373b8b74166736b1","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.8.3_1725009059867_0.5087471550645108","host":"s3://npm-registry-packages"}},"3.8.4":{"name":"jspdf-autotable","version":"3.8.4","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@3.8.4","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"f7f05d45532ca94424a59cfa613309fff7c380a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-3.8.4.tgz","fileCount":7,"integrity":"sha512-rSffGoBsJYX83iTRv8Ft7FhqfgEL2nLpGAIiqruEQQ3e4r0qdLFbPUB7N9HAle0I3XgpisvyW751VHCqKUVOgQ==","signatures":[{"sig":"MEYCIQCSGuOEFHwaAFwaRiRE3YWjEG0dFHY89MTcwklYugCHSgIhANoHxquHLrs+l8O8rWJ+c8O8rM/j8xH46/QtDUcM+eD8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":253477},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"4a69e342f83dacc411e1c31df4ae96c7b0e3e2b1","scripts":{"lint":"eslint . --ext .ts","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^22.1.0","jspdf":"^2.5.1","mocha":"^10.2.0","tslib":"^2.6.2","eslint":"^8.51.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","typescript":"^5.2.2","webpack-cli":"^5.1.4","@types/mocha":"^10.0.2","npm-check-updates":"^16.14.5","webpack-dev-server":"^4.15.1","dts-bundle-generator":"^8.0.1","eslint-config-prettier":"^9.0.0","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^11.1.5","@typescript-eslint/parser":"^6.7.5","@typescript-eslint/eslint-plugin":"^6.7.5"},"peerDependencies":{"jspdf":"^2.5.1"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_3.8.4_1728999010810_0.04484824942309129","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"jspdf-autotable","version":"4.0.0","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@4.0.0","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"d1141fc29f23338be78ed40ab04b0e4c63b10983","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-4.0.0.tgz","fileCount":7,"integrity":"sha512-51xRibw1nrw3yF6foN6+oLXdiBIUjCDfSMrS30sCycMVlyEsYprG0SyejwER/s0Y1bgDzm9CZKsoaHwad68nSg==","signatures":[{"sig":"MEUCIGiwRC+H38if8cRdpgBJLjqdbnvpvLhcUkpdpoS7EeZwAiEAigIRkJSAMVLQSPrLNQJBZLWQhJV45HJlVJKu4WGLAr0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":237003},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"8eef2a121907e2b4751344cfe7664080639fd0f5","scripts":{"lint":"eslint --ext=.ts .","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin master:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"8.19.4","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"16.20.2","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^26.0.0","jspdf":"^3.0.0","mocha":"^11.1.0","tslib":"^2.6.2","eslint":"^9.21.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","@eslint/js":"^9.21.0","typescript":"^5.2.2","webpack-cli":"^6.0.1","@types/mocha":"^10.0.2","@eslint/eslintrc":"^3.3.0","npm-check-updates":"^17.1.15","webpack-dev-server":"^5.2.0","dts-bundle-generator":"^9.5.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^12.1.2","@typescript-eslint/parser":"^8.25.0","@typescript-eslint/eslint-plugin":"^8.25.0"},"peerDependencies":{"jspdf":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_4.0.0_1740515669593_0.005599421903307089","host":"s3://npm-registry-packages-npm-production"}},"5.0.1":{"name":"jspdf-autotable","version":"5.0.1","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@5.0.1","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"437535a0d166b8dcfcc5a5a2068b659c1c30871b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-5.0.1.tgz","fileCount":7,"integrity":"sha512-mDYhVF2C3ELskl26YwKSr+xXTngE2+GcI6zZPSlX/DMxmQjCcwNwfEddPSz+W0nmf1I6bKuAD6xO5srlACTQdw==","signatures":[{"sig":"MEUCIQDNZq7QqJZIzAWhgT4n3dj6ZQ/cOK8vhziqdQ7rn31sngIgQIKvGKDMqdWe24aPZAfzOoCWhpzyOgQmCU08/SDS5LU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":235878},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"4af136be3ef866dd01797d572f797f620eb24ac8","scripts":{"lint":"eslint --ext=.ts .","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin main:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"10.9.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"22.14.0","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^26.0.0","jspdf":"^3.0.0","mocha":"^11.1.0","tslib":"^2.6.2","eslint":"^9.21.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","@eslint/js":"^9.21.0","typescript":"^5.2.2","webpack-cli":"^6.0.1","@types/mocha":"^10.0.2","@eslint/eslintrc":"^3.3.0","npm-check-updates":"^17.1.15","webpack-dev-server":"^5.2.0","dts-bundle-generator":"^9.5.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^12.1.2","@typescript-eslint/parser":"^8.25.0","@typescript-eslint/eslint-plugin":"^8.25.0"},"peerDependencies":{"jspdf":"^2 || ^3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_5.0.1_1740569496505_0.5217372809957987","host":"s3://npm-registry-packages-npm-production"}},"5.0.2":{"name":"jspdf-autotable","version":"5.0.2","keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","_id":"jspdf-autotable@5.0.2","maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"dist":{"shasum":"bcf7aa2ff9eb46a2db6aa8c0407ab86c0a6c7b96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-5.0.2.tgz","fileCount":7,"integrity":"sha512-YNKeB7qmx3pxOLcNeoqAv3qTS7KuvVwkFe5AduCawpop3NOkBUtqDToxNc225MlNecxT4kP2Zy3z/y/yvGdXUQ==","signatures":[{"sig":"MEQCIBdmd7nCO/wFar65qF8Nh2YEXlEGyhp3IQOlwscF1T3NAiBxu+so4sHgzm8W81c3wCd37Hi+/fbxyDc78J0/Kn9btg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":235931},"main":"dist/jspdf.plugin.autotable.js","types":"dist/index","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/jspdf.plugin.autotable.mjs","require":"./dist/jspdf.plugin.autotable.js"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"gitHead":"cd107726591d01a315d158bb827191928e1964b5","scripts":{"lint":"eslint --ext=.ts .","test":"mocha -r ts-node/register test/test*.ts","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","start":"webpack serve --config webpack.config.mjs --mode=development","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts","deploy":"git push --follow-tags && npm run hosting && npm publish","format":"prettier --write src","buildes":"rollup --config rollup.config.mjs","hosting":"git push origin main:gh-pages -f","version":"npm test && npm run build && git add -A dist","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","update-libs":"cd examples/nodejs && ncu -u && npm i && cd ../typescript && ncu -u && npm i && cd ../webpack && ncu -u && npm i","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0"},"_npmUser":{"name":"anonymous","email":"simonbengt@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"repository":{"url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git","type":"git"},"_npmVersion":"10.9.2","description":"Generate pdf tables with javascript (jsPDF plugin)","directories":{"example":"examples"},"_nodeVersion":"22.14.0","browserslist":["last 2 versions","> 1%","IE 11"],"_hasShrinkwrap":false,"devDependencies":{"jsdom":"^26.0.0","jspdf":"^3.0.0","mocha":"^11.1.0","tslib":"^2.6.2","eslint":"^9.21.0","rollup":"^4.0.2","ts-node":"^10.9.1","webpack":"^5.88.2","prettier":"^3.0.3","ts-loader":"^9.5.0","@eslint/js":"^9.21.0","typescript":"^5.2.2","webpack-cli":"^6.0.1","@types/mocha":"^10.0.2","@eslint/eslintrc":"^3.3.0","npm-check-updates":"^17.1.15","webpack-dev-server":"^5.2.0","dts-bundle-generator":"^9.5.1","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.0.0","@rollup/plugin-typescript":"^12.1.2","@typescript-eslint/parser":"^8.25.0","@typescript-eslint/eslint-plugin":"^8.25.0"},"peerDependencies":{"jspdf":"^2 || ^3"},"_npmOperationalInternal":{"tmp":"tmp/jspdf-autotable_5.0.2_1740571179217_0.8149198646054294","host":"s3://npm-registry-packages-npm-production"}},"5.0.7":{"name":"jspdf-autotable","version":"5.0.7","description":"Generate pdf tables with javascript (jsPDF plugin)","main":"dist/jspdf.plugin.autotable.js","exports":{".":{"types":"./dist/index.d.ts","require":"./dist/jspdf.plugin.autotable.js","import":"./dist/jspdf.plugin.autotable.mjs"},"./es":{"types":"./dist/index.d.ts","default":"./dist/jspdf.plugin.autotable.mjs"}},"types":"dist/index","browserslist":["last 2 versions","> 1%","IE 11"],"directories":{"example":"examples"},"peerDependencies":{"jspdf":"^2 || ^3 || ^4"},"prettier":{"semi":false,"singleQuote":true},"devDependencies":{"@eslint/eslintrc":"^3.3.0","@eslint/js":"^9.21.0","@rollup/plugin-typescript":"^12.1.2","@types/mocha":"^10.0.2","@typescript-eslint/eslint-plugin":"^8.25.0","@typescript-eslint/parser":"^8.25.0","dts-bundle-generator":"^9.5.1","eslint":"^9.21.0","eslint-config-prettier":"^10.0.1","eslint-plugin-prettier":"^5.0.0","jsdom":"^27.0.0","jspdf":"^4.0.0","mocha":"^11.1.0","npm-check-updates":"^19.0.0","prettier":"^3.0.3","rollup":"^4.0.2","ts-loader":"^9.5.0","ts-node":"^10.9.1","tslib":"^2.6.2","typescript":"^5.2.2","webpack":"^5.88.2","webpack-cli":"^6.0.1","webpack-dev-server":"^5.2.0"},"scripts":{"start":"webpack serve --config webpack.config.mjs --mode=development","checkout-pr":"git fetch origin pull/$PR/head:pr$PR && git checkout pr$PR","start-external":"webpack serve --config webpack.config.mjs --mode=development --host 0.0.0.0","build":"webpack --mode=production && webpack --mode=production --env minified && npm run buildes && npm run types","buildes":"rollup --config rollup.config.mjs","lint":"eslint --ext=.ts .","test":"mocha -r ts-node/register test/test*.ts","format":"prettier --write src","version":"npm test && npm run build && git add -A dist","hosting":"git push origin main:gh-pages -f","deploy":"git push --follow-tags && npm run hosting && npm publish","types":"dts-bundle-generator src/main.ts -o ./dist/index.d.ts"},"repository":{"type":"git","url":"git+https://github.com/simonbengtsson/jsPDF-AutoTable.git"},"keywords":["pdf","table","jspdf"],"author":{"name":"Simon Bengtsson","email":"dev@simonbengtsson.com"},"license":"MIT","bugs":{"url":"https://github.com/simonbengtsson/jsPDF-AutoTable/issues"},"homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable","gitHead":"360a0ed0b30dbd3bcf7598b097b3e1d0c197b221","_id":"jspdf-autotable@5.0.7","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-2wr7H6liNDBYNwt25hMQwXkEWFOEopgKIvR1Eukuw6Zmprm/ZcnmLTQEjW7Xx3FCbD3v7pflLcnMAv/h1jFDQw==","shasum":"c5970646dd5ae18801d97e3e91625c95783efbe4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jspdf-autotable/-/jspdf-autotable-5.0.7.tgz","fileCount":7,"unpackedSize":235995,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/jspdf-autotable@5.0.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCqAp2q3sQQfKRHYgvjBtcnGcKzVmDpcaVySh5SIP5+hQIhAN9yrAHqcev/DQONhN3psMyft88LyvLw+QEPdfzCnxfa"}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:bcec6498-7a38-4fdb-b724-c3f50c384639"}},"maintainers":[{"name":"anonymous","email":"simonbengt@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/jspdf-autotable_5.0.7_1767537427241_0.8209893208766881"},"_hasShrinkwrap":false}},"name":"jspdf-autotable","time":{"created":"2015-08-24T20:43:08.788Z","modified":"2026-01-04T14:37:08.090Z","2.0.0":"2015-08-24T20:43:08.788Z","2.0.3":"2015-09-20T17:37:12.821Z","2.0.4":"2015-09-20T18:01:37.819Z","2.0.5":"2015-09-20T18:26:13.918Z","2.0.6":"2015-09-20T18:28:43.803Z","2.0.7":"2015-09-20T18:31:13.461Z","2.0.8":"2015-09-20T18:33:52.772Z","2.0.9":"2015-09-21T16:15:15.099Z","2.0.12":"2015-10-27T14:25:23.551Z","2.0.13":"2015-10-27T22:19:24.489Z","2.0.14":"2015-10-29T17:19:49.265Z","2.0.15":"2015-11-01T08:39:52.270Z","2.0.16":"2015-11-16T14:40:16.237Z","2.0.17":"2015-12-08T11:27:51.454Z","2.0.18":"2016-02-10T18:07:00.651Z","2.0.19":"2016-02-10T18:11:02.199Z","2.0.20":"2016-03-01T13:50:48.926Z","2.0.21":"2016-03-01T18:19:42.855Z","2.0.22":"2016-03-14T11:46:28.693Z","2.0.23":"2016-03-16T22:59:50.329Z","2.0.24":"2016-03-18T00:12:50.162Z","2.0.25":"2016-05-04T14:36:01.402Z","2.0.26":"2016-05-05T11:38:20.415Z","2.0.27":"2016-07-20T14:15:51.704Z","2.0.28":"2016-07-20T15:21:56.089Z","2.0.29":"2016-07-26T23:51:21.965Z","2.0.30":"2016-07-27T09:51:12.994Z","2.0.31":"2016-07-27T12:18:52.418Z","2.0.32":"2016-07-27T13:05:47.673Z","2.0.33":"2016-08-01T13:13:14.800Z","2.0.34":"2016-09-16T10:41:16.350Z","2.0.35":"2016-10-05T08:14:57.163Z","2.0.36":"2016-10-19T16:07:18.162Z","2.0.37":"2016-10-30T15:27:34.794Z","2.1.0":"2016-11-01T19:58:35.724Z","2.2.0":"2017-01-09T13:18:27.459Z","2.2.2":"2017-01-09T16:18:23.762Z","2.2.3":"2017-01-10T21:19:09.323Z","2.3.0":"2017-01-11T17:27:07.524Z","2.3.1":"2017-01-17T12:54:43.519Z","2.3.2":"2017-05-23T13:40:43.497Z","3.0.0-beta.1":"2017-11-18T17:47:02.870Z","3.0.0-alpha.1":"2017-11-18T17:53:34.484Z","2.3.3":"2018-05-23T22:16:03.598Z","2.3.4":"2018-05-28T21:18:03.738Z","3.0.0-alpha.2":"2018-08-04T22:16:50.058Z","3.0.0-alpha.3":"2018-08-07T20:51:35.345Z","2.3.5":"2018-08-27T19:59:48.756Z","3.0.0-alpha.4":"2018-10-28T14:07:08.730Z","3.0.0-alpha.5":"2018-12-01T13:43:40.827Z","3.0.0":"2019-01-05T13:36:20.121Z","3.0.1":"2019-01-05T13:54:25.904Z","3.0.2":"2019-01-05T15:08:51.410Z","3.0.3":"2019-01-22T13:21:26.853Z","3.0.4":"2019-01-22T13:24:31.719Z","3.0.5":"2019-01-29T21:52:06.318Z","3.0.6":"2019-02-02T21:45:29.827Z","3.0.7":"2019-02-02T22:23:42.261Z","3.0.8":"2019-02-03T02:04:00.848Z","3.0.9":"2019-02-03T13:06:54.011Z","3.0.10":"2019-02-05T11:19:27.964Z","3.0.11":"2019-03-05T11:49:32.614Z","3.0.12":"2019-03-05T12:06:55.750Z","3.0.13":"2019-03-05T12:17:23.741Z","3.1.0":"2019-03-24T11:30:19.928Z","3.1.1":"2019-04-05T12:07:46.365Z","3.1.2":"2019-07-12T08:09:22.711Z","3.1.3":"2019-07-14T19:31:09.840Z","3.1.4":"2019-08-04T13:53:07.121Z","3.2.0":"2019-08-09T08:41:06.558Z","3.2.1":"2019-08-09T09:26:43.582Z","3.2.2":"2019-08-09T10:00:26.148Z","3.2.3":"2019-08-13T13:25:19.554Z","3.2.4":"2019-08-14T09:45:52.308Z","3.2.5":"2019-10-06T16:59:27.837Z","3.2.6":"2019-10-18T22:32:22.376Z","3.2.7":"2019-10-19T13:30:40.204Z","3.2.8":"2019-10-21T19:16:26.040Z","3.2.9":"2019-10-24T07:50:17.956Z","3.2.10":"2019-10-29T23:42:38.620Z","3.2.11":"2019-11-15T09:13:07.014Z","3.2.12":"2020-02-12T17:10:31.579Z","3.2.13":"2020-02-12T21:42:44.921Z","3.2.15":"2020-03-18T11:50:48.829Z","3.3.0":"2020-03-23T11:14:34.741Z","3.3.1":"2020-03-24T11:52:49.620Z","3.3.2":"2020-04-01T15:39:41.521Z","3.4.0":"2020-04-08T22:04:12.050Z","3.4.1":"2020-04-09T14:44:11.057Z","3.4.2":"2020-04-11T00:37:50.879Z","3.4.3":"2020-04-12T17:46:50.989Z","3.4.4":"2020-04-23T00:16:38.562Z","3.4.5":"2020-04-26T20:19:31.776Z","3.4.6":"2020-04-27T16:26:42.256Z","3.5.0":"2020-04-28T13:55:24.412Z","3.5.1":"2020-04-28T16:30:49.661Z","3.5.2":"2020-04-28T17:44:36.276Z","3.5.3":"2020-04-30T08:39:04.384Z","3.5.4":"2020-06-14T13:40:30.528Z","3.5.6":"2020-06-23T23:33:03.346Z","3.5.7":"2020-08-12T11:17:16.935Z","3.5.8":"2020-08-12T12:35:56.031Z","3.5.9":"2020-08-12T12:51:15.208Z","3.5.10":"2020-09-02T09:20:15.964Z","3.5.12":"2020-09-08T10:32:17.022Z","3.5.13":"2020-09-17T14:00:05.574Z","3.5.14":"2021-02-12T11:50:50.790Z","3.5.15":"2021-06-28T11:19:42.964Z","3.5.18":"2021-08-19T13:03:15.896Z","3.5.19":"2021-08-19T13:25:57.890Z","3.5.20":"2021-08-19T13:31:02.969Z","3.5.21":"2021-10-22T14:05:35.647Z","3.5.22":"2021-10-23T14:52:06.534Z","3.5.23":"2021-10-25T08:26:17.501Z","3.5.24":"2022-05-25T12:01:26.971Z","3.5.25":"2022-06-03T07:33:15.748Z","3.5.26":"2022-11-29T22:17:15.046Z","3.5.27":"2022-11-29T22:18:53.595Z","3.5.28":"2022-11-30T09:25:05.754Z","3.5.29":"2023-05-20T22:13:54.992Z","3.5.30":"2023-07-13T14:04:17.343Z","3.5.31":"2023-07-14T08:00:45.561Z","3.6.0":"2023-08-24T11:08:30.624Z","3.7.0":"2023-10-10T16:20:58.114Z","3.7.1":"2023-11-01T15:03:01.105Z","3.8.0":"2023-12-05T11:36:56.405Z","3.8.1":"2023-12-11T08:09:06.858Z","3.8.2":"2024-02-12T15:45:13.149Z","3.8.3":"2024-08-30T09:11:00.150Z","3.8.4":"2024-10-15T13:30:11.013Z","4.0.0":"2025-02-25T20:34:29.810Z","5.0.1":"2025-02-26T11:31:36.711Z","5.0.2":"2025-02-26T11:59:39.410Z","5.0.7":"2026-01-04T14:37:07.439Z"},"readmeFilename":"README.md","homepage":"https://simonbengtsson.github.io/jsPDF-AutoTable"}