{"maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"dist-tags":{"latest":"1.0.40"},"author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com","url":"http://evanplaice.com"},"description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","readme":"<p align=\"center\"><strong>✓ NOTICE: For a more modern CSV parser, check out the <a href=\"https://github.com/vanillaes/csv\">@VanillaES/CSV</a> project ✓</strong></p>\n\n<div align=\"center\">\n  <a href=\"https://github.com/evanplaice/jquery-csv/releases\"><img src=\"https://img.shields.io/github/release/evanplaice/jquery-csv.svg\" alt=\"GitHub Releases\"></a>\n  <a href=\"https://www.npmjs.com/package/jquery-csv\"><img src=\"https://img.shields.io/npm/v/jquery-csv.svg\" alt=\"NPM Release\"></a>\n  <a href=\"https://bundlephobia.com/result?p=jquery-csv\"><img src=\"https://badgen.net/bundlephobia/minzip/jquery-csv\" alt=\"Bundlephobia\"></a>\n  <a href=\"https://github.com/evanplaice/jquery-csv/actions\"><img src=\"https://github.com/evanplaice/jquery-csv/workflows/Latest/badge.svg\" alt=\"Latest Status\"></a>\n  <a href=\"https://github.com/evanplaice/jquery-csv/actions\"><img src=\"https://github.com/evanplaice/jquery-csv/workflows/Release/badge.svg\" alt=\"Release Status\"></a>\n</div>\n\n# Introduction\n\njQuery-csv is an artifact of a simpler time (ie 2012) when the JS library ecosystem was still very underdeveloped. This was the first and still is one of the fastest spec compliant CSV parsers available. \n\nThis is a complete, customizable, battle tested, performance optimized CSV parser that follows the traditional jQuery-style of syntax. Featuring a slim Chomsky - Type III parser implementation. Full (that means 100%) [IETF RFC 4180](http://tools.ietf.org/html/rfc4180) compliance. Including coverage for a few edge cases that even the spec fails to cover.\n\nEnough with the wind-up...\n\n\n# Features\n\n* Convert a CSV String to an array\n* Convert a multi-line CSV string to a 2D array\n* Convert a multi-line CSV string to an array of objects (ie header:value pairs)\n* Convert an array of values to CSV (under development)\n* Convert an array of objects to CSV (under development)\n* Hooks/Callbacks to extend the default parsing process\n* Customizable delimiter (default: \") and separator (default: ,) characters\n* Node.js support (ie CommonJS importing and async callback support)\n\n# Syntax\n\n## Importing\n\n**Client-Side** (ie browser) - import via the script element.\n```javascript\n<script src=\"jquery-csv.js\"></script>\n```\n\n**Server-Side** (ie Node.js) - Import via the standard CommonJS approach.\n\nInstall the package via NPM\n\n```bash\nnpm i jquery-csv\n```\nThen import it as a CommonJS module.\n\n```javascript\nvar csv = require('jquery-csv');\n```\n\n## Usage\n\nEach one of the methods can be called with the following form:\n```javascript\n$.csv.function(csv, {options}, callback);\n```\n\n| Name\t\t  |           | Description |\n|-----------|-----------|:------------|\n| csv\t\t    | required\t| The csv data to be transformed. |\n| options\t  | optional\t| An object containing user-defined overrides for the default options. |\n| callback\t| optional\t| Used for Node.js-style async callbacks. Uses the form function(err, data). |\n\n## Methods\n\n**toArray**\n\nParse a single entry string to an array\n```javascript\n$.csv.toArray(csv);\n```\n*Documented under API#$.csv.toArray().*\n\n**toArrays**\n\nParse a multi-line CSV string to a 2D array\n```javascript\n$.csv.toArrays(csv);\n```\n*Documented under API#$.csv.toArrays().*\n\n**toObjects**\n\nParse a multi-line CSV string to an array of objects\n```javascript\n$.csv.toObjects(csv);\n```\n*Documented under API#$.csv.toObjects().*\n\n**fromArrays**\n\nConvert array data to a CSV string\n```javascript\n$.csv.fromArrays(arrays);\n```\n\n**fromObjects**\n\nConvert an array of objects to a CSV string\n```javascript\n$.csv.fromObjects(objects);\n```\n\n# Documentation\n\n- [API](./docs/api.md)\n- [Hooks & Callbacks](./docs/hooks-callbacks.md)\n- [Algorithm](./docs/algorithm.md)\n\n# Use Cases\n\nInstead of the typical useless contrived example code, I have provided a handful of simple yet powerful demos. Not only are they fun to play with but a quick peak at the source will show you how simple and easy they were to implement. Feel free to copy and reuse these in your own projects.\n\n## Basic Usage\n\nWant to play with the parser and maybe validate your CSV data without all the frills? No need to download the source first, there's a demo for that...\n\n[jQuery-CSV - toArray()](http://evanplaice.github.io/jquery-csv/examples/to-array.html)\n\n[jQuery-CSV - toArrays()](http://evanplaice.github.io/jquery-csv/examples/to-arrays.html)\n\n[jQuery-CSV - fromArrays()](http://evanplaice.github.io/jquery-csv/examples/from-arrays.html)\n\n[jQuery-CSV - toObjects()](http://evanplaice.github.io/jquery-csv/examples/to-objects.html)\n\n[jQuery-CSV - fromObjects()](http://evanplaice.github.io/jquery-csv/examples/from-objects.html)\n\n## Node.js ESM (EcmaScript Module) Import\n\nHere's how to import jQuery-CSV as am ECMAScript module Node.js:\n\n[jQuery-CSV - ESM Import Demonstration](http://evanplaice.github.io/jquery-csv/examples/snippets/esm-usage.js)\n\n## Node.js CJS (CommonJS Module) Import\n\nHere's how to import jQuery-CSV as CommonJS module Node.js:\n\n[jQuery-CSV - CJS Import Demonstration](http://evanplaice.github.io/jquery-csv/examples/snippets/node-usage.js)\n\n## Client-Side File Handling\n\nYes, you read that right. It's now possible to open local files in the browser without firing a single request to the server.\n\nThe functionality is still pretty new so not all browsers support it (I'm looking @ you IE). If that's not an issue I highly suggest you try it. It's much easier than the traditional client/server approach.\n\n[jQuery-CSV - File Handling Demonstration](http://evanplaice.github.io/jquery-csv/examples/file-handling.html)\n\n## jQuery-CSV + Flot\n\nHands down, the most exciting addition to the demo collection so far...\n\nYou can input the data set using either the text area provided or via uploading CSV data files.\n\nWant to plot 5 data sets on the same grid, no problem; Just upload 5 files containing one dataset each. The jQuery-CSV will handle the plumbing while Flot will make it all look pretty.\n\n[jQuery-CSV - Flot Demonstration](http://evanplaice.github.io/jquery-csv/examples/flot.html)\n\n## jQuery-CSV + Google Visualization API\n\nOK, I lied. This one is even cooler than Flot. Hike up your fancy pants because these things look slick.\n\nDon't want to draw a line graph, no problem you can tap into the massive collection of different graph types available. Embedded is a fully configurable dashboard.\n\nWarning: You may experience multiple spontaneous 'oh my got that's soo awesome' fits of excitement. Maybe even get stoked. Happens to the best us...\n\n[jQuery-CSV - Google Visualization API Demonstration](http://evanplaice.github.io/jquery-csv/examples/google-visualization.html)\n\n**jQuery-CSV** coding style is inherited from the [JQuery Core Style Guidelines](https://contribute.jquery.org/style-guide/)\n","repository":{"type":"git","url":"git+ssh://git@github.com/evanplaice/jquery-csv.git"},"bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"license":"MIT","versions":{"0.8.1":{"name":"jquery-csv","version":"0.8.1","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":{"type":"MIT"},"_id":"jquery-csv@0.8.1","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"dist":{"shasum":"4def629bf6f54c7804c209055c8e66f54aee29db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.1.tgz","integrity":"sha512-YJyOMv+BHDAdAWCfeKluH7O/fE0B07qvzELiCW5B2nJZ3Ut3yI0OEq+JGeizanpeG8HDRcGn5AnWteHxFz3dgA==","signatures":[{"sig":"MEUCIQCiS7uEf/JzlUkknW9dkwAdIDTMgDVYG+alYEwIw5+OuwIgby1ZMAHYgLgEzWCgUCVQc8BHtwJjesybUIblCWgAKYg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","_from":".","_shasum":"4def629bf6f54c7804c209055c8e66f54aee29db","engines":{"node":">= 0.8.x"},"gitHead":"9e81c8d4be37b3070ae4ce78af872213ada2a61c","scripts":{"test":"test-node & test-browser","test-node":"mocha test/test.js","test-browser":"mocha-phantomjs ./test/test.html"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"http://github.com/evanplaice/jquery-csv/","type":"git"},"_npmVersion":"2.14.7","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"4.2.0","dependencies":{},"devDependencies":{"chai":"^2.0.0","grunt":"^0.4.5","mocha":"^2.1.0","jquery":"^2.1.3","phantomjs":"^1.9.15","grunt-mocha":"^0.4.11","grunt-htmlhint":"^0.4.1","mocha-phantomjs":"^3.5.3","grunt-contrib-jshint":"^0.11.0","grunt-contrib-uglify":"^0.7.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.1.tgz_1454540689067_0.49943367950618267","host":"packages-6-west.internal.npmjs.com"}},"0.2.0":{"name":"jquery-csv","version":"0.2.0","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":{"type":"MIT"},"_id":"jquery-csv@0.2.0","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"dist":{"shasum":"da3e278a8402ed799fd1b5624b079af8bc71da0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.2.0.tgz","integrity":"sha512-XUovxxFGupNFO8lOVD091mrUpN0CFkdLDRuX0cSfMf1frh9xIMq01IrAgVatCwrltmBYRE8bqhzlyfnV6w/igg==","signatures":[{"sig":"MEYCIQCHwN7486Mnqi5aflGeJAHMxs7Rr+Vmx+LWj/X34ttvZQIhAO/denefnDj3Oc3Rs57QJdFymDGK9y9m31ZGAawQbJAL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","_from":".","_shasum":"da3e278a8402ed799fd1b5624b079af8bc71da0e","engines":{"node":">= 0.8.x"},"gitHead":"9e81c8d4be37b3070ae4ce78af872213ada2a61c","scripts":{"test":"test-node & test-browser","test-node":"mocha test/test.js","test-browser":"mocha-phantomjs ./test/test.html"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"http://github.com/evanplaice/jquery-csv/","type":"git"},"_npmVersion":"2.14.7","description":"<ng2-markdown> - Angular2 Markdown Web Component","directories":{},"_nodeVersion":"4.2.0","dependencies":{},"devDependencies":{"chai":"^2.0.0","grunt":"^0.4.5","mocha":"^2.1.0","jquery":"^2.1.3","phantomjs":"^1.9.15","grunt-mocha":"^0.4.11","grunt-htmlhint":"^0.4.1","mocha-phantomjs":"^3.5.3","grunt-contrib-jshint":"^0.11.0","grunt-contrib-uglify":"^0.7.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.2.0.tgz_1466899114042_0.8257007352076471","host":"packages-16-east.internal.npmjs.com"}},"0.8.2":{"name":"jquery-csv","version":"0.8.2","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":{"type":"MIT"},"_id":"jquery-csv@0.8.2","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"dist":{"shasum":"36edb8d8fa0f9169204cae413e24e1ce55f5a70c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.2.tgz","integrity":"sha512-3ZS54WqBhJEyOrjdJ5y7AmerKGRwdb8t5EUnxjq95IIHxIby0j9uyvSLgPwxnrqmMP6RqkTAjWKAP5MDg7whZw==","signatures":[{"sig":"MEUCIDxuPv07ZQijRfNzQlhFvsaY2qNHRemUNF6jbX/THysOAiEAmN7/SU4bL0tvGB37WIB+z67MuVxvG3vTvwb7mXlwitc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","_from":".","_shasum":"36edb8d8fa0f9169204cae413e24e1ce55f5a70c","engines":{"node":">= 0.8.x"},"gitHead":"99e2b291fd7479a62afb79ec76eeb0e09ed31064","scripts":{"test":"test-node & test-browser","test-node":"mocha test/test.js","test-browser":"mocha-phantomjs ./test/test.html"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"http://github.com/evanplaice/jquery-csv/","type":"git"},"_npmVersion":"4.1.2","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"7.5.0","dependencies":{},"devDependencies":{"chai":"^2.0.0","grunt":"^0.4.5","mocha":"^2.1.0","jquery":"^2.1.3","phantomjs":"^1.9.15","grunt-mocha":"^0.4.11","grunt-htmlhint":"^0.4.1","mocha-phantomjs":"^3.5.3","grunt-contrib-jshint":"^0.11.0","grunt-contrib-uglify":"^0.7.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.2.tgz_1491466784640_0.025313182501122355","host":"packages-12-west.internal.npmjs.com"}},"0.8.3":{"name":"jquery-csv","version":"0.8.3","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":{"type":"MIT"},"_id":"jquery-csv@0.8.3","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"dist":{"shasum":"8145797bc5c1b93b799d00c0a08194ec2fcad5bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.3.tgz","integrity":"sha512-2urFe/gWoG4/NIzjWQkeetjOZJP6OSab+bubOO/OPNmgWmgJz8YK30wBGyimbB2KWVzQz/RUcmNOazGBAkr2hQ==","signatures":[{"sig":"MEYCIQCO9C7tOul7E41S2ZFA+LCv9r+DNb2Kuqhdy3o3S7o3mAIhAPYqA3o4kQL4pYFmQvavgmHZBR5FxZO1oEYhmM8Y3MgG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","_from":".","_shasum":"8145797bc5c1b93b799d00c0a08194ec2fcad5bc","engines":{"node":">= 0.8.x"},"gitHead":"b78ca797d36c62e73ef8cb2909742dafe4dfe7a9","scripts":{"test":"test-node & test-browser","test-node":"mocha test/test.js","test-browser":"mocha-phantomjs ./test/test.html"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"http://github.com/evanplaice/jquery-csv/","type":"git"},"_npmVersion":"4.1.2","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"7.5.0","dependencies":{},"devDependencies":{"chai":"^2.0.0","grunt":"^0.4.5","mocha":"^2.1.0","jquery":"^2.1.3","phantomjs":"^1.9.15","grunt-mocha":"^0.4.11","grunt-htmlhint":"^0.4.1","mocha-phantomjs":"^3.5.3","grunt-contrib-jshint":"^0.11.0","grunt-contrib-uglify":"^0.7.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.3.tgz_1491467506873_0.6258643383625895","host":"packages-12-west.internal.npmjs.com"}},"0.8.4":{"name":"jquery-csv","version":"0.8.4","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.4","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"c32960a61eaecfec2fd100bf61b7117aa0e98ba0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.4.tgz","integrity":"sha512-LtLMz9BTxjToKI3qEMrLcmkEy1YrQsFqyOZU/wysuE/OQRQZmMLMHiNijLofe2ylcOCTC8lR53ydRvh7uFH11Q==","signatures":[{"sig":"MEYCIQD1mRmWkp4PsbX9rx8E5IiHZsqMKKOTxd0j+EW10VFjeAIhAOgOjEno8oVUB4lvb8ku1gi0Juj76SKy4jiqyvBfDwZ6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"823532f20806813ae89df1f3675621da13236e29","scripts":{"test":"test-node","grunt":"npx grunt --force","test-node":"mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"devDependencies":{"chai":"^4.0","grunt":"^1.0","mocha":"^4.0","jquery":"^3.0","grunt-htmlhint":"^0.9","grunt-contrib-jshint":"^1.0","grunt-contrib-uglify":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.4.tgz_1516685295037_0.6061115814372897","host":"s3://npm-registry-packages"}},"0.8.5":{"name":"jquery-csv","version":"0.8.5","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.5","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"9006abf8ff3b8281e6b7625f55dfb52684b9c3f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.5.tgz","integrity":"sha512-jLduSkfQ9oq6IIYStaef3aU+Oy3o9nuNrA7i7gbd5FcqhjKhy0klGBFTB10ktGDAmi2jOLwmVKH08hU0x0kvxQ==","signatures":[{"sig":"MEUCIB/HdGdPa2+FqXwOs10LVxdKhibhXxU1qkYiIvVJ+ijrAiEA10aAaS+XOSbA+I31nTT2vevkc5y+GQukDfP508RpAVA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"dd8f82b76f926afd761637f62d47acc6e4afe4be","scripts":{"test":"npm run test-node","grunt":"npx grunt --force","test-node":"npx mocha test/test.js","test-browser":"npx mocha-phantomjs test/test.html"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"devDependencies":{"chai":"^4.0","grunt":"^1.0","mocha":"^4.0","jquery":"^3.0","browserify":"^15.2.0","whatwg-fetch":"^2.0.3","grunt-htmlhint":"^0.9","mocha-phantomjs":"^4.1.0","promise-polyfill":"^7.0.0","grunt-contrib-jshint":"^1.0","grunt-contrib-uglify":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.5.tgz_1516695402600_0.7645581671968102","host":"s3://npm-registry-packages"}},"0.8.6":{"name":"jquery-csv","version":"0.8.6","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.6","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"b684ad63eaa7da005c38e7061d82bb4caa751bbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.6.tgz","integrity":"sha512-hNZAG9Zvl5QOUoGFLU7hfYiTVY50caWHUo+Ce9kZnXFwp6kgBdc7LkBAxkRBd6OYvaP+1WD0M2IZVTrUHcfTmg==","signatures":[{"sig":"MEUCIQDXHEWsx2mjG9P/8LxsiqOiaY68jhakyeEbFjl4BMT1FQIgOCYkxXMPXFYkYLz24y06+EciTiFcaDt8POqNSQ9rw7E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"8014e38a1b54257e1b8b176a49ffc9414bd56ee8","scripts":{"test":"test-node","grunt":"npx grunt --force","test-node":"mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"devDependencies":{"chai":"^4.0","grunt":"^1.0","mocha":"^4.0","jquery":"^3.0","grunt-htmlhint":"^0.9","grunt-contrib-jshint":"^1.0","grunt-contrib-uglify":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.6.tgz_1516742663228_0.7444999569561332","host":"s3://npm-registry-packages"}},"0.8.7":{"name":"jquery-csv","version":"0.8.7","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.7","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"490c9f986bee6a5c15b7c274841474bc4a49a3db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.7.tgz","integrity":"sha512-hGeytD5Io4a+mhcJQEfoYat1Y2spm/hnOk+W8w7Y8R2qL11P8oAJkn/V30ers2Zx2X9b4//bV3Lsq4C+mZo0AA==","signatures":[{"sig":"MEQCIE4E7JL99JSHSqUvwYk4KQ+GkFMNXyY1qtdUkp8hFul4AiB+7qw2yKY1oY69ueNzJe3Uo/cAypvEIw5T8kLlfgaoqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"b32de87414a54964d54c58388b067f0ff688ae5f","scripts":{"test":"npm run test-node","grunt":"npx grunt --force","test-node":"npx mocha test/test.js"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"devDependencies":{"chai":"^4.0","grunt":"^1.0","mocha":"^4.0","jquery":"^3.0","grunt-htmlhint":"^0.9","grunt-contrib-jshint":"^1.0","grunt-contrib-uglify":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.7.tgz_1516770085758_0.8998146210797131","host":"s3://npm-registry-packages"}},"0.8.8":{"name":"jquery-csv","version":"0.8.8","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.8","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"217e04d5b3a00ebba38142b39db5298161c5e4fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.8.tgz","integrity":"sha512-JRokHzrYFNTdJ0jcEsVkU7yMOOKpbCGbzdeY8JYEQXH2xDnSRNkmnZvz9iA39Cs46DhaxZImC24GndY/p2xTOg==","signatures":[{"sig":"MEQCIFaY5RZ8W464SMlYxf5bP3b5upo+l1QHauq55GJUY+l8AiA7vxWp1RqgxhpfR516SOCxyH9jR5leTrFMOc306TFc7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"9546e965711a6ce62741955130a20366fa1ffabe","scripts":{"test":"npm run test-node","clean":"npm run htmlhint && npm run semistandard","uglify":"npx uglifyjs src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","test-node":"npx mocha test/test.js","semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"8.9.4","dependencies":{},"semistandard":{"env":["mocha"],"globals":["$","jQuery"]},"devDependencies":{"chai":"^4.0","jquery":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv-0.8.8.tgz_1517078305889_0.25166041497141123","host":"s3://npm-registry-packages"}},"0.8.9":{"name":"jquery-csv","version":"0.8.9","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.9","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"73ee322c7bc1b11177273e7d3a6ace6ea35c7834","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.9.tgz","fileCount":5,"integrity":"sha512-8Nyh8p2d8IHzID62Wjw14h7/LWGUzv2GpWzrimbedxTN2NGKOwIAWer/cYMqAocsdwmX4IYeXQv2eNTwTPA4pA==","signatures":[{"sig":"MEYCIQCK524xp21FUVlvBN2fd6EeXb9aBFdg2M1qaqkXwf2VrAIhAI0tNftercKml/sUePUEGqxJNfDF/dQU+DJWF4ZnCtkH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49766},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"2e0dc9791c31d593bdb3d53675cb0caade5dc0f2","scripts":{"test":"npm run test-node","clean":"npm run htmlhint && npm run semistandard","uglify":"npx uglifyjs src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","test-node":"npx tape ./test/*.js | tap-spec","semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"5.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"6.12.3","dependencies":{},"semistandard":{"env":["mocha"],"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.0","tape":"^4.8.0","jquery":"^3.0","tap-spec":"^4.1.1"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_0.8.9_1518461719547_0.40787886166307885","host":"s3://npm-registry-packages"}},"0.8.10":{"name":"jquery-csv","version":"0.8.10","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.10","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"e5d3fc69c3d2ea415659d15ec8a83333d300b514","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.10.tgz","fileCount":5,"integrity":"sha512-+xPVw6KPJ3WcZRM2Jy1/El5kG5VIa67KYwWW/VBXGvvYsiW60IlQPHNHvm1GbA+eY+lSaQf0xFIuJUYYRZCv5Q==","signatures":[{"sig":"MEYCIQCNzg6L/C6qc84alsZ9sfHOvx03Oc+w2N4IRHsPPO/w4wIhANroL4VuWH91V50VfgketCd7e6MD/Eu4ikkXWm3Dfak4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdzA6CRA9TVsSAnZWagAAEBAP/Axk9RDJcN2mtlgO33or\nwq0pgLeXkrss4kfpnz2EMLckC9fNH/spb3fM1ZbMWLfTMpj7KsR2TLIlfEjE\nx/CzOPeq05frBY6sw0OsALN8GAzG2Mk7JKWCWXJzJSRnKxeqGLZKDK9i+lue\nvJYVsJeK/YbxfeS7Tz9mOZkDI+fG252EBTaIaUd5J09CWyLDzNqIrpbqSrz/\nbey5v08CMK5o1seg9fiibXeEGRm39DYaRDzYgGuvrRabus14HL/FdbCcqCjm\nS7RoFFOb3z7W8FPgT/EWw3iIlgLzz0cBoCs5j1yQI54n92dGy6qdMi221gG7\n2OqBuprPwIFxswq2C6hpSgjWIFR7t5YZIiZAM/fLgDzp8awfWJx1hytBcI1b\no6JaufuYXEZjIXUGuGrPN8lCfIwwchwds/IXpNhL+ecAmz3HTqdS/HXyKUh+\npW55w91rQRCxylmbR+X+cuTIU+FaYEVV3+yOsFW2LnpXy3rAOlSKuNZFezpa\ntC4BUtcB4wXjoJVDzwaZDWcF6z2kZx5NdHxW3lyaFyPClABSuqtbWZHpXImI\n2WJDdsbPwd1VG7uDirwKFMVcCdRGXN8ZrGiYI9olcH3AR5TFtSaPtZSFV9dF\nrQdgSYmnx2zeuOHvPdc14l3Oac/AZWVIG516BEpP3wimu8FvbGylD9uYaxUj\n2y+a\r\n=m4Xc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","engines":{"node":">= 1.x"},"gitHead":"667f2db033435be57b1390a3eb6582750797e22b","scripts":{"test":"npm run test-node","clean":"npm run htmlhint && npm run semistandard","uglify":"npx uglifyjs src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","test-node":"npx tape ./test/*.js | tap-spec","semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"9.4.0","dependencies":{"tap":"^12.5.3"},"semistandard":{"env":["mocha"],"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","jquery":"^3.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_0.8.10_1551315002359_0.7134478788923231","host":"s3://npm-registry-packages"}},"0.8.12":{"name":"jquery-csv","version":"0.8.12","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.8.12","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"6d79fd7e4ef2618eb9204438caa605498b9cab0d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.8.12.tgz","fileCount":5,"integrity":"sha512-lTVpGudyrh1dNT8tTBP/rePcCwLsWHoQx3urdm+agIIFO0+VG+b2ggShCLHYepWZ7IZl2mQnRuZNrh1WoBXTIQ==","signatures":[{"sig":"MEUCIQD2vbzdj08qYGQQIWkHz/b1HbGJW2Ev0rpw5A00ANZxTQIgLx0qQPWnHt3ySJTf3/UDFKd/tVWLQlS81S5x6Qok9xg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd0VFCRA9TVsSAnZWagAAAZkP+waG5b4/XQIFEwWnVy3d\nZxjnNAfPwXxKMLc+AUyVvkJd4/fTp6isXHR2QCiuEW2Dmj6xygg9x2/F0VSu\n7jwa/YAJ70J4/aTq+T6ABmlPFVZPQoWnTs72qylTVozv+DG4GEL5C5HPhn7a\nhtfgQJxPvlHASNQOmsAPteQw5M0PffckoTG5ULhId761UXQNRuQQBE8gpwiR\nzMRbLZTXW4dUEzTiG0pteMyKy4MtaGE4lgbRPaKKPumxSRsKXIH1gSa+hUG6\nqaK65l6KHoe4ozQqdq+uMUQgy2wxnJPMnerpKCcm9vF631mSdke4HEM015bU\nfY0Bmm7Bd2+WJz3BQB7RmadhMau842s6GjlXco2bDwpYFcRsWjiHsw7QLWkO\noubAevRUIWv3Vztc6BNDo9gEwnkoho9o9vE+04AXWKaUADOmBGyZk9FUmxW9\nChcgaKFVIfFN7woEv4dzQv/fhCQFD6Hl1VJ/vPA50IxJvh1WTI400mVI6QBY\ntmq/7qKYYEfxU77CEoB09ILvqqX1yyCjiXyGevhqIx4btiaJqcjUgIaOe2SK\ns+WnfQzXEGZYXAEhrvOOB4WhVckKqujpSaMXUBGhF4nM/XGir+LXWBE4kRaW\nXQ3PI3xYbBeVIFet2Bst6JWoP82L5WBLFe43PSB5HhFKLnJspJXpN3WTaTEm\nKlxd\r\n=yAP7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"c6be33b5912425328a6041754cf29f0ad663f8e2","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","prepublish":"npm run lint && npm run test","preversion":"npm run test","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"9.4.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","jquery":"^3.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_0.8.12_1551320388540_0.23442820271171372","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"jquery-csv","version":"0.9.1","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.9.1","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"d11929170a7d269384c7be5b959318bd61f2dc6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.9.1.tgz","fileCount":5,"integrity":"sha512-UOv3F2qXMerlo9YIFQZczb7DFF5y3anXqvY+6fjVM83skLOw83jxVEIyS4Q6085AodopAqnOQkaACwoSWnANjQ==","signatures":[{"sig":"MEYCIQC6A8c/bahQGBHp6JUcvO7u9cv7ZUsz4U3Z+SYGrFZNFQIhAKTmv1sXocLit0zjgoxeU/nNosjYIBQsaZPREv10CsTg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49416,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyKbvCRA9TVsSAnZWagAA3E8P/RutYbzOGJ8xV2dy03nb\nrc8CyuHFkKStme16+nu/MAQpSqlQaLv2OXplj6QSMCAAKt2Y6QDKeWEdqwJR\n+T5PktTHvIs4BvTB/k38vn0eiNOTs35n/hMLbGcR57PB1JCbhd/LuvniCTBd\nwGU2qXi9gNxYgl1W1gl5jtgqKRKZRPaOojLTw5uW0S005rGPlFiAlX0ziu8y\nsRsuJoaT2kyM7jn8Isf0JYMYLEpbOUI3QU6uPnxLmlfmIWIBUmo6mkjFLfHT\nZoA5Lw5lx7Fw/DuN4LOvHTpeDLnucvz0if+vP04VnHFqKX2ytIwYIufbkY6R\nT0WpzbgzOjks36xJUNpWyJhISFim1rNa/PdtnjS9Ah/7FAi9Y37Q0322gZdr\nt4WET7mE7pHGJgdtq3+u6rNiZlijU5H9tx48Yqt+swDaeWyazn+T22+L130v\nKDdwEI3gADG5Tl42t+yzcnCeFuJRQE5CCbSKsp12bXFhHhIA4Etu/mTGUN6W\n1K/sOtiXxKUbCq94XZlVAd7gu5HRkrzrJAoZdvw8YA54/T0bA9M7VUAOqDUA\nRPEToEgy2YwQ3+UJlftmasGFf/CMvWp2Lcdv69RbkC04nF40PqXiaxNHvbmP\nFdRYxcAmM6ZWUiychH9Vpi+PtE0uQgOqCWjFgIY/YsC5ZsXMGgcVBl7gvUlb\nYY15\r\n=D8Sj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"237dcf43a3c37be10548e6951c0e025ba36784a1","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","prepublish":"npm run lint && npm run test","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"9.4.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_0.9.1_1556653806934_0.3607567987594593","host":"s3://npm-registry-packages"}},"0.9.2":{"name":"jquery-csv","version":"0.9.2","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@0.9.2","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"8350e662bd97e2f9286cc77b0b2364871a9d5d76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-0.9.2.tgz","fileCount":5,"integrity":"sha512-8i9GpLQAYvZmtT5eFfqI3AniXQZV3wn6B6CCLdoFNkyJzbCZxZt/OWpXTrWXQvPNLYh2BMaoBJdtkLBp1gyCUg==","signatures":[{"sig":"MEQCIEVUMqDpepZR2mSbfGhAU03sIuanlQp5KvVTktRJr25fAiBfRX047JYvUVfTe8LFClUr3JfHgHMcUvMR28NquNZHmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49536,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcywjsCRA9TVsSAnZWagAAiacP/3vCubF5rIK8cqBXHLTv\n1zj57p6Jkgywko7DBYKLqUn+9cNemkm4ATxm3rJi0a5mpkfCebjAw+su+PTt\nRBuye2Abd165ggFPllyBzNOkA+AJM9M2uQfjvrcwFHzHdtIrFgIsAqn0yUqN\neLvJUYU9fhBYka4bWTYFuX2y0UTcLjl03LucGon99AHby4YMzyzo4/7Gq2xS\nmDU7rRF1iECeAQeR1QrK++v9MQC9hk2Qvu42XyB4/etelFySZKEeI56sESX2\nBq9ByrhmWFp6o9Z0s5D0KxGYf7iohvELrQJR2OBzNPdw0Z6CMa5MCGLy8l9e\nucLcu+G4pFEMJlUTkekNNpsSFOVSK/JPOTCzEqT0Xxb6XXL2q1N+qn44ad8z\nuDr3JvDE8cQkHtjnC/25lWUqHiLOBqE8F6SkzdWPZlEetPvdxMhaxpY1ioxG\nadYUQJeaf0HmmSdQLt6Q4H0ur1GGkPANZf85wDShF/PlpScxrA6kYFoLAOo5\nfqkVxWB/wOZMc1sv1H+6IX5wyZr3OHaihqf9qdeIPlR/BjzuOYXSbnDhnbdt\nyZBe7jVAkiY1jAtfEWNKmhf7RLfHgo8dxkUv5R/TSYh8YFEGKY31jL0ZhjUM\neLSpypVjMr13kbVl5+mUz8+1BnmTwIj2zfP78T28m1VJsmlMhs4b+yWQl1gc\n3q0I\r\n=xtWn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"c31ff1f14d607b5b57df9a43e387f1e557ea1f73","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","prepublish":"npm run lint && npm run test","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"9.4.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_0.9.2_1556809963898_0.2979797963054862","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"jquery-csv","version":"1.0.0","author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.0","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"b61b9a00e0fd63a9b7cc95a3d247795d8b1fc1a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.0.tgz","fileCount":5,"integrity":"sha512-sz2+z9WuT7MIPMRGTjiHSQG2Z9mFN1kJZKHwIa/4kFE6b0SvLneTTARUxtc76quBldboxlC7rYSuV8x5NRT9aA==","signatures":[{"sig":"MEUCIQDpVBY4zBIf3ON+z26JNhP+Gj000hmHiZe7H1sVVQAf4AIgGZF2v2tewlaLxqDpLsbHyf8z4mTkmc9pJhQ3t9kju3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52098,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcy4UOCRA9TVsSAnZWagAAOPQP/jMOjFs0fs/tIRleMIS1\n+EW8ZVSLgF/kgIkRGnEysbnF5O+mKqFmMNrQaeotkC2HCHij82FWtpiT83ss\nWNx56VRtl5yUn3UXH1u/ZN7D2q5XOryDYAqNZvNXrpRXH25Z1fE2bc4/Y6yj\ns2I0dHo0nMFcyxF1jO7lElU5FNfSu4e4xBy7wIg3pOh6p0KeRgAUmI+0wI4E\nU7hCQZSpZ3nLURvSWMZmmUgmYv2w7bn4WP4sUdSGRmW5yuc0zaWUA6Q0tPJF\nk3ydKHZr67W98ZChlQiUe9sLUtXiluSoFDuHTfggzKOqZUvWrBgEWpww6315\nDugx9+r7ab3nJLYBUsy8FYEfoiFyME4y1FBmk4Uac6DbfbC3qZTBKutf2AV3\nmuQdDNQxDbd/8v0St9e9mvbrs24XdOV2xcgPy2o92LaiJ9hoFZ8hE+GBgo+v\nAhFklI//QM+eFbK4K6zISYdKANSTmK9t9Dldwd+f/VQgsxNTci5/2pMsyebg\n/Xn0/UitJXHD5Qkfkv3ycVq5IwcgMh4GBqEo5zVR1YwhtIvgiLQPVjwcP5Dc\n7LwINIxd0H9eBzWX2oQUY6GYPEOKrQUbziuxvOM9xbtQn0tdM0DPmkUcrHdO\ntEs5H3Onp1er/+aiUEwwTp9a8wIySrkf0jM6OaIlsTDJG3XAQ0teN0JA/wor\n0JTR\r\n=l01U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"ab050f2390e00502e2c4e9d2b311d1aa4508ab49","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.6.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"9.4.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.0_1556841741671_0.9884807253402366","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"jquery-csv","version":"1.0.1","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.1","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"4f334ca841b800ffca28a25d225be8f11425aaf7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.1.tgz","fileCount":6,"integrity":"sha512-ft844tEr5DY9o42faLV0ZczbyuDBth2pQ5Oj+D9S7Mr3uG8ddj5MNdQZisvN188GUuiTg+HiTmkDlLtMz0xeiA==","signatures":[{"sig":"MEUCIQDRvnjetZvEWPQc5qj8sdclqQy1VXH1ukyJ5ZDttGmXmwIgMhg5ImIO9wPAzwXXE09mgFbc+Tg2odhq7Y7NQ/3aslE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52236,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0f17CRA9TVsSAnZWagAAxaUP/iueTrRhma5wtYiIfC81\nR6ZcdlZ0D7iIyDMPCPvJUMI4GhG26nE1iQvep3Vhpj5AwFXx+hYZS2dNuW4p\nz99heRo27aifBWgL+ndIQHrylD7BAAR5O7MXs+2DfKCfCjcpef3DcQ5jFTqw\nvI7Z7ZQEC+37lCzn6GyCfp6/aX4NndYd0Esq5NT0Fs8Pp8vz+CDF8IewBLp0\nTxDYW0ilTvR3W39RoTb2Um+Bz5m6pEl9O35O4cH/POQcYQLfAxSBtIOgTAqK\nVJq5NRZrDYFDA7kY2THu75j+hmYHPazGJ4HXhcl6HMDRlqMpmraG5zRKpj12\nymdGMEfebS+50rpt9IOw3aFsKuMO1OqyyQ85Hmot2dSRHShFtWbHDI/fLmiX\nBRa4arwkGIEoGMyS5gcsBPyspZhc9NJ+kMrcC5swD3sCz3/Z437aJaTEViYS\nLcqQ/Y9W3NQZw3OtHAekhXDeulYsgYFnLP4AIOsbln1FWAJvMg2maqYXeymZ\naqH/o/7mFt0/sGJEjieIElnqMz/j843IBKh1DIQgyEMLxcWPtG7V0o8WZLGQ\nZN7SMjeZq9HdbL5WOgG4bRfDem1uVXXe8MSmrJk1yzBeLkKAPYfzttzIG0H2\nUBJmdMFWVX2A7/n6qIKFkQAz8z9I2xVa/unfRAmD0O4JeszOm8NOuBs7K2HR\ncFv0\r\n=nJsL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"2fc98dd68e3077e305f6f0487fe8e3e98817bdd1","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.9.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"12.0.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.1_1557265787186_0.9132599041318243","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"jquery-csv","version":"1.0.2","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.2","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"3c46aa04498603a526b7c1fba91798d91dfe767e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.2.tgz","fileCount":6,"integrity":"sha512-BtZ/JdAQcB+jKO8Zu/nN0JfLwXYvvhINqhbX7cOg2uuIgsm30KOvRMMtMxj7YeXjl4rGNq3+A9PA/MH17OVW8Q==","signatures":[{"sig":"MEYCIQDTnrRXwpYdx5jk2qz1BATj147b24MyCjZrGp3XpjWZOgIhAN1B/bHU2aw7hlhkUoFpPjStjqzME5RUEiqBtPs8BgV6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52236,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0f3pCRA9TVsSAnZWagAAAogP/RE0JYn3JEOT1HvTqGoZ\nksonCPDBY/RGjgFHCCEDVmY6XG598qExZwccIdUaogHHc+J2T0TAzOkSNkhG\n4/SJmqOsDQxcgwzbYqgPQ3ExYKW154tMBHkA1w3493/COSGG1hqFp0/ZAOmN\nO5vkniH4XCH3eR0AXT17F10Seivy2lMKv3CR0YFffVmeFmT0c5A21Q4dpLyJ\nQ0xXswDTepEvMfNZsSP/MirNXXqoTYbbM3JVlq3h4yq2+4zTB0FMCw9SVdfU\nXQMk+z4IcQmhZgUxA5Ifrk333usIjBSxtO5/gNkobwPBwzQ9f+Kw6sI0JOsf\n6Ux/HYhJvV2ascSkYpeIHPgnTU3m/HuUr6zHCER93C98Pi/tUAzMbrf9Xz1h\n69gj7Hcomxe3p4axgy9K8yD7h/TVmDsUW+WOU9DbM4/75iMEMNTpl3Lurv1P\nwi8yOH34z9kTApRLj2nc7QzDldOUhozhq34FVi6nRKAjsSR6sBnq85j6WYKL\nsVZDGE3zz97ourrrZHW4l3wz3h2gFLrbp7MgLWrsw6gZvt+c0BTkQdad+Oer\n6H999LGk1QvBDHjxFRlpAkDKh+fC4s5ZNz+HjVE3v460SXJ3jEYv/H7ppsGj\nmUBe7np1rTD31FuRBMW6WlFHrQRGBoVFW5wYkqSVYwJ7upCQAq5/RVuRIXIY\nJ1ZP\r\n=ANPU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"4b9e53ffb2e191254985891e0e190729765d10bf","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.9.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"12.0.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.2_1557265896765_0.448463742469003","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"jquery-csv","version":"1.0.3","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.3","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"903252643699841f57c7dd76e19340d943ad8d03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.3.tgz","fileCount":5,"integrity":"sha512-e7PO0aar7VmwETktEpcz3QuSDv6TByGFd9KxyWn4dOUCaCwBCdQjLrFRscMKazFQjm7sdKtX9Bk7aUp74+oXDw==","signatures":[{"sig":"MEUCIFuHuvYPbDuuYQS92GbAGpNjWtZlZwkeWYTfLCnQbVZJAiEAkJfIWV3JYTCfCk9o4zvbYMbJVBScBoUQnzzTXRsZT4w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1IxmCRA9TVsSAnZWagAAOrcP/0jRii94B3PWuyCwOkvP\n7gpzK3NFDrum4/lvva6Lps7gQRQXiBbzz1UGY+a3w/KPTbnVJA/r5iRmt1It\nokXp3uSUkxmKnz27iYVhhRLqXjw9k9S4ne4bkYtrqsdHtYGHiTRu6ShOGI9b\nCADj0BG36Kt04sOL8brCbi+HG0CCsCe3AIDqil/gDGVlg40tHR9zyGEXLttT\nnxhGrqb10SZeGFcqSjkZKT+dnEYX6VFQXaHt/2i1g0+vLq9gngtwmaTO47iX\n6X5UJJ9M/dtyFCvDFiVNE3rsIMIzJPea6/c3fnZSxbHkdCqFZ00sMB3l/eIg\nlWvt3ZD3LU3Z0mq2gVdcTi/EhEL9DYKCbwIEOMD5W3JJmHZ2NbFsOcfK7szS\n+EmAqq/8BA1y0IbKduJkLXezMfvURhZVHd1Ks0qVJjemhj1X81iku0Yo4AL4\ndjllPUQkDQCQ7cNF75SZp/NLRUT/rWIdCjGEY4poCVFvk6UPqGUPsAugqb8Z\n79VCWA93VFIvcmmbRGWJvF/9d945fa6gxuYp8sM0OfMIiKtQ6aE3Ea/JIhiN\nHyg9Uqn8CWXoiKJ94MfbHBg7iz/dxBnK+7bWiIOllcO052yIYGUR+Ad0KbFD\nT6PiW4FF2vNQT0U7B3/n59mQ0Y2DcXMcd8a2o5hQFU7HxVrKGzvnkgxuhGen\n7OFS\r\n=UAGz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"9f8344c926f61c911a8c90529fe5675062be35f8","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.9.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"12.0.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.3_1557433446136_0.9558949584056251","host":"s3://npm-registry-packages"}},"1.0.5":{"name":"jquery-csv","version":"1.0.5","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.5","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"35c5b7d0d6afec2b8f812a7001150f58f1544075","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.5.tgz","fileCount":5,"integrity":"sha512-OPn6Laqng6n23WBTZdQM9EmHgqg3q97ViOa5Eav5pScx9L5v2O6ODzjQzD9pleetWSuI8mSLTtyytNgeMFm3bA==","signatures":[{"sig":"MEUCIQCV5+A1v7SrDWdEJT+RNg6ssZVAS574kLiYyLL+zI33RgIgeTn1osxsjpolaH53EvIMCj3c5W4S3Dn0CTBtK1BCOkE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLSvqCRA9TVsSAnZWagAAOHgP/RF10POF4nvKXXkXUYG2\nIx4yDPFPRhGYxNat2dcbt9A4jk+cInPfq/1CjMITGbr7GIYaaPeTEgV3y1nr\nujmw1bcT0y5j0TQB3upNMQPVxytFmEAvPUMtefmGvpbXNgNjq5LSWLdGSeCm\nGTJG3+Cg/aJXzsH5S+AZJsnFKHLZ/L6bVfwqG1VGfQlg+ChjuqqemlMWm3r8\njFP8e9GrsNn0EvOfY1ixhEZpRjZQ19heCke1evImyVPKJQLJE7yqnjEI7Yf7\nTjNsJhGPRSK1GPWP5AfzQFGgwRFHbiCkHCMfZxa089mMWYzjdq/hqRJWMiRs\n+HjWFLpBQuKG56s6/w3ls3rpLqkwIEMvnpiTopYjVENLLesg1s8obS7ap8BR\nVcmo7konSO5tkS7xXDue31v835ytB2tM2M8puz19Y8Bv9LHVz/ODPG/RjmGw\nCodeEu+9EsaEjC1xYs/TtKEEdzwJ2ekp8/jYzW5lVgLqvJ0YvL4TBY9bCsHY\nU1MuwawTHsaTHVwdIzo3UXQeQat6lcyVANksu6+8hDP3j92+1eoP3GiX7TNd\niJd2/KsWG8kEaXdrfEs6Ow5mFEnTrJ2B1NIpl443nQ/0WqAQ5UV4x824aVR7\nbVRYMgPRpOGI3a+5qBAGsGz8tSKFVfHQf3lcjjXPFK4btRW0MzL2nyzoNkgz\nb8V3\r\n=KzfF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"4559e089520e63a8a4d17dec1f486ca987ab6c2c","scripts":{"lint":"npm run lint:htmlhint && npm run lint:semistandard","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test && npm run minify","postversion":"git push --follow-tags","lint:htmlhint":"npx htmlhint --config .htmlhint examples/**/*.html","lint:semistandard":"npx semistandard"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.9.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"12.0.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","tap-spec":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.5_1563241449915_0.8325317616638235","host":"s3://npm-registry-packages"}},"1.0.6":{"name":"jquery-csv","version":"1.0.6","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.6","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"911c62b1d0a070358a6533a256dbb6b9a29aa2bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.6.tgz","fileCount":5,"integrity":"sha512-0iNE+7t7SYMhhGriebOl+xBDjO8c0xbKALaP09tX1ryU2cg4IDVvcMpH28uBV4Gr3uJq5ZS5eQphB4IOTRCxjg==","signatures":[{"sig":"MEQCIDpm2GCUxxmSZJL+u8ZJ2df3v5BAiO5MDTJowyHKDkloAiApI5ao2bwC3daqG6qBDkD630pPzX7g899pJSVAJydm3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8zNUCRA9TVsSAnZWagAA/rsQAIsmBFil0HE4th/42fwm\ne4h25ARGmcxQoXAbBBoo4kh6fkJcFQSnqbKMrLFtW4FI0KvaSZvfQ98XrY+Q\nQB4i+UP6fAJVyGkPtA4nc6ejBxuDTHk9AqGlztG59Dm8UHI61WWA0P8xcErM\nQ7IUohqUA0W5qYsd0X22SnD6a6hUadwrQxKfj6dXSZEQvvzHJAJUi+rQAJG4\njVmlfHkQbmHtovu4ZooSYYaz5pwHTPN8QfpbM45x6GDi2Ty1fMY3kmULh5g+\nULjsnt3rzzRhlWndGHNBNBiKuYB5b4DeEtCSXvqZnpGHsFk2lY6ikmeLJQ2X\ntJbJR4OcolUKBBKHXsiROt+fFpfbOZU5U9DajDpU06rZSwuHWXLJPPRgqaIS\nAC4skZA5zqWGpjK88xvYki14m1deAb+CNC1IWmVwKDoePz1ucC2l6Ko7az+6\nwz21pp42OSB+UFvh1CF5jjVz/D+NVKummBoArZ6wu7WnlNu2o3wKNUCbXLdp\n+YtAo8EKnncTC8b+05nH/hD1PdP0R2Q8d6fvXPbN9xeT6ditNJdprBvXhcZY\n39UzakDAxigw8oaabepshy0Ad8TugCBwBSWteVVHfob9DS6zdXrzNcg/uLbZ\nsxBP7h0arjujH/+mm8yVGEf8XjIW8kkCd8DAK2FGQ/5sYx1lYyYq0daAFlNi\nhSvv\r\n=PZXb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"77a354074359a21487a391a575c45af311e17dd3","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.6_1576219475758_0.5338776817426005","host":"s3://npm-registry-packages"}},"1.0.7":{"name":"jquery-csv","version":"1.0.7","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.7","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"241eaac1f1578c7483658bc4f7577bfc78e28724","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.7.tgz","fileCount":5,"integrity":"sha512-QjddYednE4XspCcrSCGVbOH6wdkjgt4GhFnxwMsFPPcrbIkwheuTobf9kN3qqsy9fLA20M/PLlk6NWnrUaJFfA==","signatures":[{"sig":"MEQCIAqIwmAQAb0hRkOKLdzIRnJAdHokT76+7frx8Vece6wIAiB0MnCIW+O9m83PNgTKi4v3edRJoP0lqjJqjV4bBFeMcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8zPOCRA9TVsSAnZWagAAsOQP/0Ea9SQ2tQ57TxolTnc9\n8AF0gPjSu7ByxrwnAR3weYqfXp/9vCWoS+ZA/bCsMkLLb1m73n7/aZFXY2pL\nN3802n6LXRlQeYQynaSiyEaBI1SSBuUnTfJ3wDhk9FOa25ftFi96GTpBAfCd\nhGFoh4cbMHavl7Fi0Df3MVE9SDkugGJPY2HwEsdGlw8r6FaPvkQYfX8BBIH0\nFPcurUQlRoLCEK+vM8LOmS5PU7O53/iXOt8ALkcxaB8iVvSyErad5DNJT223\n00d39XsQEsBYl95f1lYWiPu6YIWHkoboini5OIirK5sEwfABn9B6blyTwW04\n4q41QUVZephra0pY2C2i243XdzZ6EujS6U1MCI6rkxt9EXp1jS547Pqfyvqe\nOpNtslTJ8K8wqiANeSZ5yWukg2UqcXbH9McXqtHe3LcN5MfUYekDvVjcj3OV\n3HGly4xfjr0SpvCIQABf6rV9JxGiqXkIhk9ze4ijtWV8UmuaLoJ5IIhcbDif\n5TkUqkvRCDIDQb9hMWlTJbD8+xxJUn+T3C+kccC1ohXu+QNphXGOf4fGMumi\n5A0ceMEZ3tdoy0DxVP0E8ewAC5tGeSjZfXL5bb62cVgXF+uBfeWoCnmaDZ3i\n4WPHYJ53MLOZWQ/8FX8lfthx+JNqHkNWDfIDi8Gu3FI1iUecCid4trd+wt81\ns1cK\r\n=QWnq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"1e20089730c38ee3917f5b1de1ecf871b6b9df6d","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.7_1576219597647_0.20474041729638204","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"jquery-csv","version":"1.0.8","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.8","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"fa198b7d3d38d850587b73208ec33aca36227bda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.8.tgz","fileCount":5,"integrity":"sha512-klqQ4OPfXe8BqfO1BzUFv+dldI8EoroNV3/J/gYoWskB3nOp0SgexgWEObU0Xp8PfKlVXKDaRHjKxZX6hHPojw==","signatures":[{"sig":"MEQCIDwyg0HokImrzxuUp7yOa7HKU4E+A4siBpUNIUtSsKjdAiBICZfZdqHN9W+PEku0SgXzadjxIz8dpINLq4XsxhXJPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8zSSCRA9TVsSAnZWagAARhUP/R8VRa9JFAhK0ejv0wtS\nGDYuYwhdT8aagvWv5JQjXXHbrLRaDicO1c31WeGdM91lfYQyIzg+hP+dXkCp\nvrIhGEePNT+RA5+RR8SFhZd3Vlc90OiDeVSkjYS8pVYgW63BpiDR3jYVFXpb\nEgTMjzo+3/hY+PmzXWtsPR9+iobEk9EUcBaZal2fbxPdCLHZkdNU1A/TH2oz\n2B6/zH2IgmjwARB/Yxx+b3kCZE3zDajBLk688PMB8zEMcp3nKSBp0bS4QJCN\nbiP46T/kF6m7ZnIayK2uDOUxkdVVITHth7odQPDdFe7p4LQQNXzyeMS5N4WG\nTiY1cayKivATIQ0muku0DArTlc0bBdqSkfdlq3HNO/f/OPfLDxeBpuX2li3z\nTsD70LLv5C3CB2sfKGuhQRqehIbJT6wXu3uWXRuDeMTR+v3VUHMH8urmdCU7\nqxR1V088FuG2iqHRd6A+7BUGFMGL2o8aAoN1/7E+fwqM+1HbYqBguob3lK38\nZomGJI+W/pCIrvtrW1srRQdC2Rx2Vo1LJVkIOK9GpRbcEQqXq9hL2XeCaXba\ntOyz3znbndT+J54mQ56RCXfT/r6+nea5cwRpGKVkp+8JZJ+JkXAmdENxkxTo\nJw5roe+ijmZxtwyOEmXAW2m0wG3UFWynewTGPBZ/jJ3Q5amhb8+X5Lsz/4BF\nAxib\r\n=t/qz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"bd47949b023de07c72f47a743a3ec36b4f4ba797","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.8.0","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.8_1576219794298_0.9798078665312064","host":"s3://npm-registry-packages"}},"1.0.9":{"name":"jquery-csv","version":"1.0.9","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.9","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"f24104256b2cbb1252b58eb71b19ac2df23f31aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.9.tgz","fileCount":5,"integrity":"sha512-tYTRco05H4MTK80X4u98fKb7kZMzH59AGwLMQcSp3BKfeqE54SoQOMi3bs1fkdwQ6CMZahhhNEdwz9HfPdm3LA==","signatures":[{"sig":"MEQCIFcViBscaot63QNq8mZHJruqUZ3qvC13i41p1Isp7CFwAiAEzg+602qrMEtEUQaptVQVIaG9S/DFqOlStfr7Ng7iIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeqA2CRA9TVsSAnZWagAAlKYP/0uSwWzHxQNsaJKpMOwQ\n1P+PwY5WLLWBNa1fTYexkLRnwXt6VoH1mmxUcX25A0am4e0k1d6AQTxQnjHy\nCaSnuvg+GqOxAX3QPKZ5zH488zJ81OV9aMHG4QMAGCukXX1jZbxGa5Ytz3vw\n1MO7qarPhz5txitBnIsLEDHEIFqyHvZhx8tXZh4ZBtMB81s/unP9z13ndATn\nP9YwLKmFwFYtTiJyvRymB0QwpbaewM/vVI68E9yK0gqC4Hg8A32U+S5xWCte\ni5TpFbGzp2AbHb5c71F4HC3AdGIWm4MyNDFsu8qraA49OlH0JoSVixNiRMIq\n5qi/jot+2hqPbrs/2CBO/D/wovnaNpyowhn+iqtjXDjdB0YgGqwZ9gZmXU4w\ncXYDvY9Rf4+jGn+pX2kGbseLomKaW0bNQzS4bERsE2illnuJ9Z/7JSQwtL9c\n4Xm/nTC7re/kG4duYfAZH0G2eOkDE2+zIeLiVgnlHslcF6Jp7pAk3kIj9hcV\nZXlhJVT3K1QQYXiYyC/2YQZ1JcIi4pUP5ft0UaclYEe1+JaHXEinlTdMWAsw\n93Cllmkok7q2s0sSs+I99kP/UbDRC9/JGSXVcOmRXy52pzSx+Dw18VDYviSD\n76dlaXgK0/8khpgT+Ilp9qAMzKPw+n9w/ytYkdUwqZ+Bk2ObahA48Ilpg+bk\nkc6Z\r\n=X+4H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"97eef6b6c8e02a82c3a3adb21a0009b888ecb367","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.9_1585094709584_0.8445363821346079","host":"s3://npm-registry-packages"}},"1.0.10":{"name":"jquery-csv","version":"1.0.10","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.10","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"16ad4f29993568a63e361303c60e569fdd6eb8ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.10.tgz","fileCount":5,"integrity":"sha512-uOU8YJoYeGo0FF4CSQj6GEptQ1Ps6YqXo/X5Fb+Q8ANR/pHh7gS0TpLKNsxGHGf5p9C2PW0Bs2QlPDtsA3WJOA==","signatures":[{"sig":"MEUCIF6+ny1MdAgg6dkyuABsoiSEztRpK0jnC0Z+m6+m5e8iAiEA867UzXSPEUetiourkbQs9DJQCerJXU2eB0f2lTh/MX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeqDBCRA9TVsSAnZWagAAa6YP/26udkQdFsWHfbF6a6EY\n3wVC0LZHqaDchJnVX0igC3LdNPUjDIoHjplv5Xlhe3bUK/N01GwxKRMrWvyo\n/TfEM5GJRSsZjV2LsGtxv5QKVeO6bBSodQf5WRtnQk65MYl7qwhHkTYqZ9NM\ndcB66C5fPuULlLcINzP+lm1kRS6Fnto7vd/Z7b1pOooFXX+G3z2Xa2uiC5RI\nzW9UhmSbs9nUuEgaBz+QvZlkIkGrwibw9yZkGuwex0gjUWlSzqPIYJq/F8Gc\nwCPC6ltHPKRH2QfLPkPc9wFmmfNjdjREA05YdYkOyOiKmHOWPFaEimQptg0M\nGNnXC8Qsug2YdkV3F70uyfPeM4+e85TqmPu4ybRF5M9uhKKL4FQ4byrApYW/\n5d1ahZu7j+Fa9ffWMbH+f6VhVOl+yh1V+QyDKYfFBMP3RoM560asK2572N4w\n2ZaqjzX+1KLfrQ0rK6i38ozZ60AJTRGFrW8jpHQ+p4APDwQNCSqtQmM2Kc8n\nfZNoaRNYmmBtWNzpilgDm9d4umTfypv9GYxO4pYbDobVSBjHVszqDVqjBV/b\nlMKVhyFmDJVHhL5BtSkT1Fbgakihkx72m/l03luCXKaJ+qfwsLk4cSNbBH1K\nVgQ/GZwvkVjlbMXb71xCacLLelQ6g2r+//IabBxQ3vSUnnGaDaDq5HIY3kLX\n2WMK\r\n=oOS1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"32ca6e084a3f5e96cea8176fc7098126b880c807","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.10_1585094849295_0.25930029141615973","host":"s3://npm-registry-packages"}},"1.0.11":{"name":"jquery-csv","version":"1.0.11","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.11","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"1eeb689d4a11e9467c31b9bb426260b8acd326a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.11.tgz","fileCount":5,"integrity":"sha512-KDPc3wFLTFO68p/4IqsODZCjBp+y9axDa/pr36pDKrWk6yyHf8Nk1FqAGXvaUb6H7J1zJSYszABIFj0a40QXRA==","signatures":[{"sig":"MEUCIQDZSSo8pE5NJ+tsAuHZ7YHGMK6zg3ZFA50gvIH0HmefrQIgOZU+2T+x03CjX+4WgJT4GV41xAHS6w0myoRP3Za7NAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeqDjCRA9TVsSAnZWagAAasQP/3QtEFHxMdWUDQiAnI60\n9uPN8/FI5D9QztEjNRzM1W3HH25RRn9b32JP3usuxsirXpmCCSClMvPxxr+t\n9noBuzcJvpYRVL5FIWHtmIvnoYL6/ySn9MuvXWccVuEiN4vl9DsF35mLynA9\n90hK1b0PTu2db6QlUqoT4c+efScyoXfH+sP+dLvPcPDOQgw2dhXAnSdAC1Bm\nwuLpDPwDY17e4QjHd7VDacdTmADETkKWOF0VL23M7NWsSDigP4a2x1cepF80\nbSqoC5PPNacAS7bB5lCnO0eEw3OODRI496a24zt2SOKTDbitdnAyCFMG4ha/\nX0l8wy3E9JrV7hQoKg89PU1sA3dwXND1yt/jcN0OSKF1nXUdE/XZg17c1m6l\n1vycL477tKcB265fzjOZZkCFU23EIMpV21eM57Bil3Ni8xpFOc0GQnIgglNL\nftE2GrBukMxeHPVBTXCP5VyhrbSAYd+hOE5ArrpCZPq2YEK5sEdHeyZGhDlz\nTkjXqa/1/IFzDRpJeT5TBZogMBCNwFXLfzwLylQzAJz0FAOPpOpIt/Yf1T1O\n+PhGIl2p0M6mi90U3EL9tDXpmMN0BAXWNZvAS/yKcIMqoiXye6AaAQr+7VLF\n7gNDcBcQ69Qk66O/M94FlWeS/r2olnHsf+jpRFRvA6OeJ+f0kuxm3oNdMiXw\n597o\r\n=OlYT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"e6de8fd4ec8b15f3141c0530a1e95c13fabcd00d","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js | tap-spec","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.13.1","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"13.2.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","tap-spec":"^5.0.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.11_1585094883335_0.1119154569921137","host":"s3://npm-registry-packages"}},"1.0.15":{"name":"jquery-csv","version":"1.0.15","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.15","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"b24160daaa970cf34fa5641385d8619ba7a00f37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.15.tgz","fileCount":5,"integrity":"sha512-uP2JcphPV0kxGj+6JXv8gXv6O8z3vUsLpSnsgJPOa9x5xJz2Wdi/ON+vviRPfg2N5v/8zt7XNTStQhQKdAD9eQ==","signatures":[{"sig":"MEUCIQCvwLDvavqgosAxTtRrBvgwcrYxvi/1Qv4aNkoADqBKBwIgFNQgfsXNKndGp6RyYRe/gmq0Boo+KsHSjDy6TxgLB7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmuj+CRA9TVsSAnZWagAAMwIP/R+J4DZa4VBUn7ingPXR\necHilrS7SzfNA2M525bCrg95ECaC3hdIX11/6C9i/1wuaeEmb0I4YF/7m0w+\n6p7zCnigIi30eHKo/Dt7bZ6xCgloEAJCklUu5IEZiy2JLnvTcX3w/aqQfzkJ\nlIujZEp2TmyKMqqwC1PWMI6Siq4DrKEz9VQfvteAR7q8e40mw/fzwblwyksn\nGzWtEPFlMGZZhF6KNGMQEHVlzZFaDo7h8BJXBTcfRdCV0om7MVYuW7tk2xo+\nvxGkvW/ETmWVw+yK3yJfQspuOLdDJBcU4hKXRFNx2M4x9KLqBjP5fFwV1hXN\nx1n0p5RZv+pcTTJ19PyegPvd2cHzWGwjYXfabYfwiuE/jk6wZAhjS2ruyq3b\nKPguJRwKR5gsGOiTh1XR+EZeIT6QQ23zyb+9T0VxDgdm7Z6ZRmE2oGqdqmy4\nkf/+9w6ddZ4NV14hH9EW5D+YXbURaXjrhDy4X4fkfsid2c9SWdxQ7ttqRZOK\nmtLb+d8ey3dMXD1hdL4zOiS1gjwFKCOb2p4ZecsfuYZqepP5Dp1TciWORw1D\nLT4sg8fkUDqtarlNm6CJlwbgGq0Up91TCv21Yw7woaz8O2MyKNkEIZLECoFu\n8xBv6WVk0/L0IGzYD95z/Hj2aYSig4uKUzigGXVXssSruckTZ4ltAJ+ZWCwN\njmiB\r\n=+LOt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"78d791a3411c92c462e17d91ad47a03b45a35217","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"7.11.2","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"15.12.0","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.15_1620764926342_0.25301537259478923","host":"s3://npm-registry-packages"}},"1.0.16":{"name":"jquery-csv","version":"1.0.16","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.16","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"080f5a2bf2b9b0e4f0e6907d1822ac9aef53269b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.16.tgz","fileCount":5,"integrity":"sha512-4If9uH/aqhp+RnxSsN6xoQWfTSfwb6vd9WaXoAk12wqyUrNXECljtWKCXopw6QwA8Vajn+IEuRJPixN85utnzg==","signatures":[{"sig":"MEYCIQDQnzOG+m/JkwFZmAvu6E+bUuCxMBsdI4YUkWM6vw2Z3QIhAPN3/OqX6rlk3QSGx4tkpGzCjiH+++kcuwn8Q1QCrNuM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnEF2CRA9TVsSAnZWagAACRAP/1LFopP0aDqvRZTMPqqc\nBoGktohs/gaW1fGiJbpnhoE/QxtdiasyrmsF++Yi34GtLLo0K03FqykLu7m3\nMzNIB/NjyGzithZVhLFzhy0KWcDxN/Ia0ysfCBluOqTo4MYAY+aEElnjAmQ0\nY2oe6iO27aJ0H/a0LOciwilv4oPEYJsaHYH41s3WKSASbsVtFhtGu2h85/Ns\nUnHTL2EBkcGPucN9mthY2y6LKva+2UeJuNG4SE3Pqs/547f4YTJb5fbVzEZf\nJkKBF03OSK1oGSY2/MZLnwB3VLTZwogLR6bcuqjxJYvQcZ9T7sPfPnVhVY4C\n+K4IiCaDwWM1J6JgBYLwz/sgjHCrFiqv1XwIOI/AJP5zb8UKbNyOT6zkflv7\nxl8SXg1SAZfxHk/m7TGlXWf07iC7hhUrOFyGWu4AzYCDFmO/0V5WeVC1BrnW\n9lCKsUvFnfqpJrZZ0beSyGIO+Z/a13MWo2noUVjr18HbZp/Z0xZaVqzJXLRA\nQdm9tNq//OjBggMSrGSkmXvx914m2H2MltWjm6Nyr36ZrZVtLW57CBxkWgAo\njfPlWYJOvAAjZOOZi+MVia/8ppRaD5KgrsX3ZKTYNC2dsWsOjIc0TqFbToHA\nN/7qzbsvTahlHyVO/xzf0JdT9AfQyAolTUf4XVeG9XLbB5y9I4cqz9jznmjc\nxkR6\r\n=9aQ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"fe16fa8ad40b95044ede4b53bcab3fe1bca7623e","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.16_1620853110147_0.9800175032037712","host":"s3://npm-registry-packages"}},"1.0.13":{"name":"jquery-csv","version":"1.0.13","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.13","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/typeiii/jquery-csv#readme","bugs":{"url":"https://github.com/typeiii/jquery-csv/issues"},"dist":{"shasum":"c9f7bd35d0edacfea6d87c34d1d65c067c406f37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.13.tgz","fileCount":5,"integrity":"sha512-3u2MkslRMAsMF9kc9yTufpoZRQZPrXscwt8Vdbgdwp+Pm5dAVrD4945LKFUGgu/CKslCq4JWY5LaIeiKUDZPSw==","signatures":[{"sig":"MEUCIFiOBuP+Kb6/1Keym4+WTPevlGk+P16uDhEbqk9SdI60AiEAougtFYGZ1poKeUwLLL4TKK4o31qy6ycNfCemSw2DtbM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnFlRCRA9TVsSAnZWagAAVzwP/jJ/ZBDlZaQ6HY4Zv3oM\nWzqHZE/aX1A8kGKKBdZr0lAQSeplrlAIrHcuEBsnA/Z3OEs3OVTy6CosWV7t\nVie6+aK404n8RyaqEiy8HkiFuOUYh/y3X8qhbu07FNokpmQoBHXqZJoW7YLd\n5EoOM0DTPv0fS1RgGxr48gckfy7rr7pjFXMPXNOso6H1CXICXyJQmJyqRv19\nIjl/yAQ++KvPoQZFZm1aeQaxckY3dfEp1zUBV4+DyN74WvPNf15LCVu2Q6e5\nLUDj9iz07jt3SdhSrrRnISYPUrQaktqdmmrB7LzpkAhWzEpHgVfDeZN3r9vV\ne1hPIhYNtTfHN/SugiiQHqsfK/usMD8BtUuUVW+qB7y0yNUogTHl4Xg92vaL\nAQx4nlwVAvVsRGFMLaiiceEqa7X172bprffuMSzkKzpunRKHfdvD87lwy5xN\nOEmqnCnJD82yIWuCMoUB9afPpRQvcVEmiHZRVroT+lVo6aRTR1qlK6J7p8lx\n7zNK1ASffeuKweVFHvWaNIazyfy5qqZipT4sv5g6FrKnB06iMebv9fJxleHT\nRgmxFZTmE8OwUaHXrUuezyeyTmoS7jRi/T3VWSXbrbWHmMyJTDW4iKEQItI3\nhI9C2twXNczLPI2a1nhJLFZN5OEdhOy2sZbUv650+YCiq0BI5Nvi8BPwYKiv\nBRZj\r\n=v4Fe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"35ccb703b1bfd4eaaec365f20ba68cdca8092cce","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/typeiii/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.13_1620859216582_0.4238637808647592","host":"s3://npm-registry-packages"}},"1.0.17":{"name":"jquery-csv","version":"1.0.17","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.17","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"37b858bed3e853f714f557119cb693a2a35377f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.17.tgz","fileCount":5,"integrity":"sha512-BfzDIa9V7Lmuue9inCpp2WGWTdoIdJCXli1JIi3rssXr6lJW4ljNhKuLGEU8mN+7Zxp7Vw/SlETZSY8D4wI1yw==","signatures":[{"sig":"MEYCIQCTie5quN2O8DOp9GP7RIMaNRITd+8Fb8nu5nnzmjkGygIhAOpQIE0oyQh5wsgikZHG6/Oo7ydoZbxIWEZWfX9CJhd+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnFlyCRA9TVsSAnZWagAAs+wP/02v+aTfaqwhvpMvqUU3\njfiIFw92Dyw4PyqXntywUJ5u7Es3AvWgfHgda+qMj6HrorGZauxFf3Xbw9mh\nhVMB6LN535fHTgU0i/5SqJFMp5QicJTsDzIihhcDkCM+5+Bf3vVMQbYR0j9F\nSrqBEDZLCfVomrDUhGN5nimDF83OdHem3bbHajFuj1PnPJ1wD0VYpkwgZbh6\nWLMTtDphcM2sXvNfaKu0D7gbvERpt/S1bK1OqwqH0GAucyRO6bTfqpG0k3Yb\nHJM32Uik6TfyampE9cCiHbqEUemohykunzW1OM+5aEh5I+qQxGDIGt82ypCq\nl8ukKd399NEp3IV6yc1istyIZSJSw1dUYibdpwDrlGWTknoQpXb8U0dwyiYK\nZlTekA7UXQU6lvt9JZjLSVvaP8ARlbGfGmNb/rcaXe+T6TiNTPUNRs0MtlRM\nPLciCv+52x6LsGO09kZEtShmi8rv54NVpKel5XpD/3G3gjZPPHFrVQ5M8aSw\nRjueFSqoJLg7zY+3v9iPeKreXxVtV/gt0QyJgwRAI0wYPf33bP+zcLfsQ1o+\ntQwE5unTzXRfrzukXoCIwYvv5vlaa1gR7w12Gnvn6IBmfmHpM9CqYhq1N38a\nXHPWUuNp3UNRBYmjXncDdZN95qAxDDQ27KsmA2vuFSSUrypplelNEK60n4Aj\nG8sV\r\n=c52A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"f97b1a8bd4f27d083f6ae083aa24772cd397a748","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.17_1620859250096_0.5097454514395927","host":"s3://npm-registry-packages"}},"1.0.18":{"name":"jquery-csv","version":"1.0.18","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.18","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"42c9ef61427c1244cac6166ed9d7cbb8602ef534","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.18.tgz","fileCount":5,"integrity":"sha512-BYN+wwfL1sRKSdDCW+R9Wqvd4Braz/Toa+cAfYefzPtr+W77/GWqTaAAiecmvnRDo3ByBsfYnIUKss6hk/frOw==","signatures":[{"sig":"MEUCIFfovHF6DNOsZWo/352w3YUOiJ1ypKhG1ryoi3y3pBPBAiEA2LJaW/OdkGWGQiztQ+cOKsCB4HQrfWL9u3tP/aMWHww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnHoKCRA9TVsSAnZWagAAWdEP/jGn0XA2uIHnCKrCGYwY\nQsSd39guTkU5fpVrilcMA6a7XtNw3puwe0H/Xp6BAwfBLMKUpd92DWOoaV4T\niz7yz9tRlaHLoGbwHyRPpp6lAVFuBJ75vS/afBmLqVVUsovwG7mrKKu/WVQs\neI1OUDLLYfSwIvPdDOoTkKWrXTZHAaNXPNvQr5gPYGESB400Be99eYwFbwDz\n5vCNnIuVtY56iZbHADVH6TjiFFmtbg/Z34D1tfxTTGEv3e6uaWDpTSNEVWUJ\n7rEI3iGbLcNISN3hn1SA6RUMAOWVLtAoSu2z2YejHU7Iv/+RkSEeXWK5+8N0\nfGZQNhAy4Oq6ueO31eLEkdAY5mG/9J/zRTCEwEl2DNegXC+1bXR7hWQqm++s\n2OD9XA196lKuDiBED/MggSWqaUSKXHpWg2bTuPz3FF73DGbEWjnliHYElMLO\ndHX1BpVGqNRnvFX7+GUFIZArqi4FdHAcvGR5mK0VoLSZ1ICA37pOKh7M9/nn\nSeZbLAqWZl4lRUl6jDc6QXWtF4pu+w7Ns/DBFjAAhfvD34u0/Kt1CtqBA0pa\nsTot4+VMFGcIBCtHPO9zY+xb6horJ+dxwzfa65AWD72A3fe+ooOoYW0g1U6M\nru0wiVJN2b5arfd+olgL9oX5rjDqskGubL+Pukf9DPNgaIfcfHWM0J48InMc\nlt1H\r\n=XSyA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"66f4f586e740475f21897f27de12dbe59c1ee649","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.18_1620867594351_0.34368632434055835","host":"s3://npm-registry-packages"}},"1.0.19":{"name":"jquery-csv","version":"1.0.19","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.19","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"5a1a15da4610f8dc4756e7552c23c0a65f407b02","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.19.tgz","fileCount":5,"integrity":"sha512-zqnr9/TtNc3skFXWIsmyDtjvJRriGq9oj8me3agON7mTJ7a7t+JSffkwW2iX2sTQEZBvbzqqWOJK4l5QjUHutA==","signatures":[{"sig":"MEUCIQDBGvDiQFLSXCQ/5OlYpy8O5K7O8vHa/3Zeb2NWKoSU1wIgIVV+onABvjHF5KohVFBChe3qiD0+aMW0G1NGPnL037w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnHqACRA9TVsSAnZWagAA0qwQAIeFbIWJK9SPnk7hZ4Ux\nwiZSJ4ZFNgAS7BuYYOgnLWSbDgSEhdmKc27bw2L+8IeOG5weK8+Vqh9Fg/ke\nTXJJToAnEOftXfZm6GcKYRGGdspGFT1gSHbCKh41p+PKcce7HiEhcyZ+CMb3\n7w54qlx0KlM49iDrxL3TQqc0HscNL2/8XEpNVdstblxM2kcVibUAZ2ni+l+m\noIcwwD4sohS5+Qm5p4qF6H/49oMKkBUWC7wG3XeTjnya9k4bE4ioq4XSopq2\nCeVerB0sVCrjhSBtaVbqDJ+aNT8qT7PO5B4JssMRvx/uMvx6dX8Av9SidZp7\nWrI6Q8ad3O4hBzCzBHDvc68M1l6PiSbO/HQconqj0hDrUy/F5LnHJRiu0t0s\nYs0BkHTI/P45Ls02+MCgpTnij7GHgtc6GCDikd8WNUzgza/aj0BRZiPy/AsG\nKroXT0gt4tahWDZrp6plqEwapbJBW/UWdpg90hZwoF7d6GpVmFmGx4Z+Oygl\n/3G0onhHLKYKOX4PTotoz2/jK5N47VUjIRqq7iq7hhKOrb8bJ/c0Gu0zYUo9\n1HtgYHr0EqjUOh0bZ6grPZIw5Zo45g0TEcsps08qByzuXvF8k7pXDqRgRC/C\nnhB372wlaZdl6CPruohK5G1YRFder6Z36zXJ88voMvyKp3UabcMRpEeeZMO3\n9ssx\r\n=gyTJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"7674d31e69a9b4ff63a95129972f3b9233d48b27","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.19_1620867712474_0.024355602583058467","host":"s3://npm-registry-packages"}},"1.0.20":{"name":"jquery-csv","version":"1.0.20","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.20","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"ffa26a8b772a3c993e992a36606ad009f9a8c0f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.20.tgz","fileCount":5,"integrity":"sha512-+JOeoGRjbwDjyYXNQrVaj6XUnoViBzR75848yxGj5uOPqBPvrMHOh9L4wUqL8Go1fH9bSRKpnfODLDcLnMwVkQ==","signatures":[{"sig":"MEQCIGQFEvdLJ3jdrMxVo1PBOS1M10Rdj1MCgs3f1xyah38xAiADoKyAIpQ741MCG2KnB2Pp5ag21cj7vRIdVacUfwPSZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnIBeCRA9TVsSAnZWagAABXEP/06rfKcOqGNb7RCnW+Vy\nf90c38uQksmA4uHHyzYbMEo445MPUWcWfOnI5kyj+2yePOQS7IrN6XEdfH93\niv6MVHCUlNW2tnLDB9zl6eI8UuBe9Z0quGOqr159sDQdA76ov2zkf5PsyaVx\nyqfaqeNOvmj/HfJDrNh2YwtLaBAVAftetX2bJbBzI80qWCLXE0r8K2TxJ85F\neZnzpIZ6SBnIgHYK6vmDIvK4xEJPEzKHxC0sJajha2Nr6z+oDtxay5VPAWUU\nOCqLm/kocSgVLK8aV1zGh2fzStkFtUA1GW4PvSsptBIRHFukuoJeytNn7knR\nE2GBhFESqWTQ8SZbrpIQ7Diis1XhRCrlecmNT2VEIdg03NW5wwBKTDDQO4t9\n9fVkZrSU7VWWp7J97YZs9npoTK834+QJeApocNd8bnj1Mp7buJ4j2um1BDVc\nqp6PhPREFR+v6JNgS+qqDzH6awXiV7Rw9QncuZphQl6slIVnu8biE9JVeSmQ\nso8RJHjMCRkh9HgtkRrwDPxLNqxWSDKBPX8BT8jdQiTGWWuLZBtoO2m0FjLT\n43UxqFVgZlq1jiWefff0bnmUZA+uJ6X1CQWkacNiEb4QIo9/Yx143bL/UuS8\nGPmn0DDwNLHashhdjIchZ9tzfCmXOL+Jqimkb58kOUB3UXDbabXbUpmxcr86\nuD0w\r\n=lIRp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"8239375ede207e9b6565c8e0ee31b9fa6b7bab10","scripts":{"lint":"npm run lint:html && npm run lint:js","test":"npx tape ./test/*.js","start":"npx live-server","lint:js":"semistandard","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","build:min":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","lint:html":"htmlhint --config .htmlhint examples/**/*.html","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","semistandard":{"globals":["$","jQuery"]},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","htmlhint":"^0.11.0","semistandard":"^14.2.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.20_1620869214281_0.4492607304597749","host":"s3://npm-registry-packages"}},"1.0.21":{"name":"jquery-csv","version":"1.0.21","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.21","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"323b1b08cda39a70596e05f3ccbf8ddb3f952bc4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.21.tgz","fileCount":5,"integrity":"sha512-uDIFsJcC4xZEofK9pk3hwFQlyqf3FFwkQq6JIa882lf0pu/S0H4LqjCAEaULGM0uOcdCbGbMBh3b3LmPtF1a9A==","signatures":[{"sig":"MEUCIBGumf5n0yVvfNFiel73pzdoPeKofG0Hz9iDGWRMr3h+AiEAlQF2DgHcjB+UNxHIxORAa1SMpKMjotiZNb/jISl7feo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51848,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnUaUCRA9TVsSAnZWagAAuqAP/iQcdhJkHo8KyExp7MMF\nQ41KgOJ4NMlZLuss+jKCdTUKWdpoYZGNqEjQqOpjysds/Ltjgqi5JDjjq59T\nCd58RuPTcfbHQaINLDV1pO+ZXlvVPX55a1YO1eetTtB7bbCY8PYNPkWF0+8l\n1fHqdh43Kwvl2nZLTrUAhcVXITdNdnSwDCLP2orN6N7Bjf2V29XaFGYxfzgn\nlmA/4zqfkAyHYr3XoaEz0bR1tb7a/U2L+KibPQdbJMd5JUUfsew7CgFEGcwV\nWopfMOlVmHiCL1SGisc8b3MpmntU+OcZG6PSL5STKO02mEB62vb5n5cdm+92\niqL2IdyWn9xpdXH9aYb69eLakNWUwTEtkokesjIf5nmBnu2kRR5S8xgLTTh2\nh+txMSNlsgEgka6hkTvhoqCYSI89/Fm9eIYKdlrk8pa4DFmSy3k303q8KFhr\nE1Q4U42/9mblc16ta/oTMvyoPBm1ordH5MLAt132VTWMK3dD4JzPszEalb5L\nDxfI82A8eqEXkt4lAbljPrIVsGj+E49v4aWl0oSRlPbxMg10JOUkhMRNAIWY\nJ/dOn6TWZ04ihAA2xMwChyQfzycSTNPJ6NKUJSSRIFUtNZzDsmFh27QiGxUs\nDffQMYwTUN7a0ZChBKFpuLaSYxy7CPGywqo4vU4Vz//BEdlas2TLVeycItOJ\nxBp6\r\n=12Kf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/jquery.csv.js","gitHead":"61622d97cd4c7ea7c62c389888b6101ad259918d","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"6.14.12","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"14.16.1","_hasShrinkwrap":false,"devDependencies":{"tape":"^4.13.2","standard":"^16.0.3"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.21_1620919956142_0.5730083325288384","host":"s3://npm-registry-packages"}},"1.0.22":{"name":"jquery-csv","version":"1.0.22","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.22","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"8e1f39f08cab994f2f2d48256edf7ec60d381b63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.22.tgz","fileCount":5,"integrity":"sha512-U9x7XEyA04HzlmGWYpC3uxlRq5BCkTwaWbqGq/Gtknvz/QM9aPYWEONWHAxOPVR+2yjGCBE9NvUR7B4GkuAXIA==","signatures":[{"sig":"MEUCIE/FEtakXY8QP/La+2GM5YlDMuAkGGl2PqZaG1nPczmwAiEA7ZNG1tZmgSxA6DhzfZk1A1JljNpZNHelEUzd6g23ijg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51840},"main":"src/jquery.csv.js","gitHead":"b517cbd7471b7791e9853434cd8208adc700388f","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"10.7.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"devDependencies":{"tape":"^5.8.1","standard":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.22_1720746751512_0.9433615412582064","host":"s3://npm-registry-packages"}},"1.0.32":{"name":"jquery-csv","version":"1.0.32","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.32","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"c11098c2183bcdb0d946acb310f1e9f9d6927727","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.32.tgz","fileCount":5,"integrity":"sha512-TxOmxq9dJHYruKvs0p7EuAwowp2RlT/y2gvcO20S1YXtBUB9vu3kXUhvCorXAT/6mLQF4Z1zbhwxatLnLf+Bjg==","signatures":[{"sig":"MEYCIQDErdoBvQJGZ/qKt3Kirh9vaImeoZBglnzsZ1r+Kq/AWQIhAI02/0ngjdlxb9jhJGDqF1uwzIK/S71MpZtME60+1ZHP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51887},"main":"src/jquery.csv.js","gitHead":"2edafa72856f5e536d55015e02f8bf5f9f42a6a2","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"10.5.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"21.7.1","_hasShrinkwrap":false,"devDependencies":{"tape":"^5.8.1","standard":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.32_1721438520047_0.8967162642960049","host":"s3://npm-registry-packages"}},"1.0.35":{"name":"jquery-csv","version":"1.0.35","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.35","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"fb8284494da412ea5c091a26e00600cfc7e19a46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.35.tgz","fileCount":5,"integrity":"sha512-uANQezqIUc4vXxe7Box7Uad8llZpEHwqyQVzXhVJ2hvSPMacrfdLkbWPZs3ukhIaY+IYj/VQbCjZGyTmodxEIA==","signatures":[{"sig":"MEYCIQD+9SF2YXAp6lYNtI+TnWfOIb9EC9WHU7+jd2V/tWwNvgIhALpBVv4Ycr9UrYxCeYKBqGRbG5EQnG++4KDcY/500rbH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51887},"main":"src/jquery.csv.js","gitHead":"354326d17effa29d7dc1bc2fab1d6ff5c99335df","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"10.7.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"devDependencies":{"tape":"^5.8.1","standard":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.35_1721463596643_0.6177432971829675","host":"s3://npm-registry-packages"}},"1.0.38":{"name":"jquery-csv","version":"1.0.38","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.38","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"37f79ad31b37a39af18460172b8fac1fe17711aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.38.tgz","fileCount":5,"integrity":"sha512-PhSOz87z/WHY3JW1kqw6L2TMq3+yPTmeLiTd8wVKWzTTMMke8u8CuexGFz448Tp6E2fR+ReZ4ziFey+hUxEiSg==","signatures":[{"sig":"MEUCIF3epStra/auW+iVWJUNsT8pLKJhXTFr45kktDT+s5ruAiEAmsDNH6ZfKbDxiDSne92SjBcg4pLxyLqIENDA9aJfF+E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/jquery-csv@1.0.38","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":51887},"main":"src/jquery.csv.js","gitHead":"8a2ae8fddabd04c9ce83413b38ae27d6b3f0b94f","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"10.7.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"devDependencies":{"tape":"^5.8.1","standard":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.38_1721464361576_0.7007957731142946","host":"s3://npm-registry-packages"}},"1.0.39":{"name":"jquery-csv","version":"1.0.39","author":{"url":"http://evanplaice.com","name":"Evan Plaice","email":"evan.plaice@gmail.com"},"license":"MIT","_id":"jquery-csv@1.0.39","maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"contributors":[{"url":"http://coltonehrman.com","name":"Colton Ehrman","email":"coltonje95@gmail.com"}],"homepage":"https://github.com/evanplaice/jquery-csv#readme","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"dist":{"shasum":"4136ac4081449f403268d4af7fe5fa113efa4f29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.39.tgz","fileCount":5,"integrity":"sha512-IXj24MmDfmnlogqIVqTPvBKeIFW/XZLnlFSYF5iVS2tr5wkYVwLsIjve/v/uLeVY107+WTl97BTXOk9f9azy7A==","signatures":[{"sig":"MEQCIGjhr8amaQ5f2lFztIpbYbM02AmUv+nKcvwF76UBZa8PAiAGqKQhMegcX6Q80jdFpRJnLgMbPYOd4SsSwUzS8lbPqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/jquery-csv@1.0.39","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":51887},"main":"src/jquery.csv.js","gitHead":"b528c2d46408c9a6a532d3353c3c312d51756beb","scripts":{"lint":"standard","test":"tape ./test/*.js","start":"npx live-server","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"standard":{"globals":["$","jQuery"]},"repository":{"url":"git+ssh://git@github.com/evanplaice/jquery-csv.git","type":"git"},"_npmVersion":"10.7.0","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"devDependencies":{"tape":"^5.8.1","standard":"^17.1.0"},"_npmOperationalInternal":{"tmp":"tmp/jquery-csv_1.0.39_1721464464345_0.5557818020376903","host":"s3://npm-registry-packages"}},"1.0.40":{"name":"jquery-csv","version":"1.0.40","description":"A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete","license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/evanplaice/jquery-csv.git"},"author":{"name":"Evan Plaice","email":"evan.plaice@gmail.com","url":"http://evanplaice.com"},"contributors":[{"name":"Colton Ehrman","email":"coltonje95@gmail.com","url":"http://coltonehrman.com"}],"main":"src/jquery.csv.js","scripts":{"start":"npx live-server","test":"tape ./test/*.js","lint":"standard","minify":"npx uglify-js src/jquery.csv.js -o src/jquery.csv.min.js --compress --mangle","package":"npx rimraf package && npm pack | tail -n 1 | xargs tar -xf","preversion":"npm run lint && npm run test","postversion":"git push --follow-tags"},"devDependencies":{"standard":"^17.1.0","tape":"^5.8.1"},"standard":{"globals":["$","jQuery"]},"_id":"jquery-csv@1.0.40","gitHead":"555d41d2c25679a28254bef73ab40632abcc15fb","bugs":{"url":"https://github.com/evanplaice/jquery-csv/issues"},"homepage":"https://github.com/evanplaice/jquery-csv#readme","_nodeVersion":"18.20.4","_npmVersion":"10.7.0","dist":{"integrity":"sha512-xkFGMm9I6A/PNoYlaAn5WAbNBCjk6Pwt0UUv6bkJ1ZGtEyJus4G9WwokDUX5h/a/1wHjJN70ue3C5Kx01+ms5A==","shasum":"15163951b74f99f8beb3d99d0e70324d415a07dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery-csv/-/jquery-csv-1.0.40.tgz","fileCount":5,"unpackedSize":51887,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/jquery-csv@1.0.40","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICiSo16mMVRSKpbsZOvCDZ7+pgk5z60tl/QRtVQMiHdCAiEAxujzcA1ZOkNl+WrYaA6/zEGJj5XZpWl+aJBT+/5iQ2U="}]},"_npmUser":{"name":"anonymous","email":"evanplaice@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"evanplaice@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jquery-csv_1.0.40_1721465547032_0.45945586612680933"},"_hasShrinkwrap":false}},"name":"jquery-csv","time":{"created":"2016-02-03T23:04:50.002Z","modified":"2024-07-20T08:52:27.561Z","0.8.1":"2016-02-03T23:04:50.002Z","0.2.0":"2016-06-25T23:58:36.407Z","0.8.2":"2017-04-06T08:19:46.776Z","0.8.3":"2017-04-06T08:31:48.859Z","0.8.4":"2018-01-23T05:28:15.240Z","0.8.5":"2018-01-23T08:16:42.737Z","0.8.6":"2018-01-23T21:24:24.380Z","0.8.7":"2018-01-24T05:01:25.891Z","0.8.8":"2018-01-27T18:38:26.107Z","0.8.9":"2018-02-12T18:55:20.495Z","0.8.10":"2019-02-28T00:50:02.481Z","0.8.12":"2019-02-28T02:19:48.699Z","0.9.1":"2019-04-30T19:50:07.093Z","0.9.2":"2019-05-02T15:12:44.034Z","1.0.0":"2019-05-03T00:02:21.806Z","1.0.1":"2019-05-07T21:49:47.350Z","1.0.2":"2019-05-07T21:51:36.897Z","1.0.3":"2019-05-09T20:24:06.313Z","1.0.5":"2019-07-16T01:44:10.079Z","1.0.6":"2019-12-13T06:44:35.921Z","1.0.7":"2019-12-13T06:46:37.812Z","1.0.8":"2019-12-13T06:49:54.420Z","1.0.9":"2020-03-25T00:05:09.723Z","1.0.10":"2020-03-25T00:07:29.405Z","1.0.11":"2020-03-25T00:08:03.502Z","1.0.15":"2021-05-11T20:28:46.486Z","1.0.16":"2021-05-12T20:58:30.329Z","1.0.13":"2021-05-12T22:40:16.729Z","1.0.17":"2021-05-12T22:40:50.248Z","1.0.18":"2021-05-13T00:59:54.514Z","1.0.19":"2021-05-13T01:01:52.587Z","1.0.20":"2021-05-13T01:26:54.460Z","1.0.21":"2021-05-13T15:32:36.290Z","1.0.22":"2024-07-12T01:12:31.880Z","1.0.32":"2024-07-20T01:22:00.224Z","1.0.35":"2024-07-20T08:19:56.829Z","1.0.38":"2024-07-20T08:32:41.721Z","1.0.39":"2024-07-20T08:34:24.548Z","1.0.40":"2024-07-20T08:52:27.169Z"},"contributors":[{"name":"Colton Ehrman","email":"coltonje95@gmail.com","url":"http://coltonehrman.com"}],"readmeFilename":"README.md","homepage":"https://github.com/evanplaice/jquery-csv#readme"}