{
  "_args": [
    [
      "csv-parse@4.16.3",
      "/var/www/abcdila"
    ]
  ],
  "_from": "csv-parse@4.16.3",
  "_id": "csv-parse@4.16.3",
  "_inBundle": false,
  "_integrity": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==",
  "_location": "/csv-parse",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "csv-parse@4.16.3",
    "name": "csv-parse",
    "escapedName": "csv-parse",
    "rawSpec": "4.16.3",
    "saveSpec": null,
    "fetchSpec": "4.16.3"
  },
  "_requiredBy": [
    "/sifter"
  ],
  "_resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz",
  "_spec": "4.16.3",
  "_where": "/var/www/abcdila",
  "author": {
    "name": "David Worms",
    "email": "david@adaltas.com",
    "url": "https://www.adaltas.com"
  },
  "bugs": {
    "url": "https://github.com/wdavidw/node-csv-parse/issues"
  },
  "coffeelintConfig": {
    "indentation": {
      "level": "error",
      "value": 2
    },
    "line_endings": {
      "level": "error",
      "value": "unix"
    },
    "max_line_length": {
      "level": "ignore"
    }
  },
  "contributors": [
    {
      "name": "David Worms",
      "email": "david@adaltas.com",
      "url": "https://www.adaltas.com"
    },
    {
      "name": "Will White",
      "url": "https://github.com/willwhite"
    },
    {
      "name": "Justin Latimer",
      "url": "https://github.com/justinlatimer"
    },
    {
      "name": "jonseymour",
      "url": "https://github.com/jonseymour"
    },
    {
      "name": "pascalopitz",
      "url": "https://github.com/pascalopitz"
    },
    {
      "name": "Josh Pschorr",
      "url": "https://github.com/jpschorr"
    },
    {
      "name": "Elad Ben-Israel",
      "url": "https://github.com/eladb"
    },
    {
      "name": "Philippe Plantier",
      "url": "https://github.com/phipla"
    },
    {
      "name": "Tim Oxley",
      "url": "https://github.com/timoxley"
    },
    {
      "name": "Damon Oehlman",
      "url": "https://github.com/DamonOehlman"
    },
    {
      "name": "Alexandru Topliceanu",
      "url": "https://github.com/topliceanu"
    },
    {
      "name": "Visup",
      "url": "https://github.com/visup"
    },
    {
      "name": "Edmund von der Burg",
      "url": "https://github.com/evdb"
    },
    {
      "name": "Douglas Christopher Wilson",
      "url": "https://github.com/dougwilson"
    },
    {
      "name": "Joe Eaves",
      "url": "https://github.com/Joeasaurus"
    },
    {
      "name": "Mark Stosberg",
      "url": "https://github.com/markstos"
    }
  ],
  "description": "CSV parsing implementing the Node.js `stream.Transform` API",
  "devDependencies": {
    "@babel/cli": "^7.14.8",
    "@babel/core": "^7.15.0",
    "@babel/preset-env": "^7.15.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.7.8",
    "babelify": "^10.0.0",
    "browserify": "^17.0.0",
    "coffeescript": "^2.5.1",
    "csv-generate": "^3.4.3",
    "csv-spectrum": "^1.0.0",
    "each": "^1.2.2",
    "eslint": "^7.32.0",
    "express": "^4.17.1",
    "mocha": "^9.1.1",
    "pad": "^3.2.0",
    "should": "^13.2.3",
    "stream-transform": "^2.1.3",
    "ts-node": "^10.2.1",
    "typescript": "^4.4.2"
  },
  "files": [
    "/lib"
  ],
  "gitHead": "0fd5209b6862655c384cda052abf38019b959e70",
  "homepage": "https://csv.js.org/parse/",
  "keywords": [
    "csv",
    "parse",
    "parser",
    "convert",
    "tsv",
    "stream"
  ],
  "license": "MIT",
  "main": "./lib",
  "mocha": {
    "throw-deprecation": true,
    "require": [
      "should",
      "coffeescript/register",
      "ts-node/register"
    ],
    "inline-diffs": true,
    "timeout": 40000,
    "reporter": "spec",
    "recursive": true
  },
  "name": "csv-parse",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wdavidw/node-csv-parse.git"
  },
  "scripts": {
    "build": "npm run build:babel && npm run build:browserify",
    "build:babel": "cd lib && babel *.js -d es5 && cd ..",
    "build:browserify": "browserify lib/index.js --transform babelify --standalone parse > lib/browser/index.js && browserify lib/sync.js --transform babelify --standalone parse > lib/browser/sync.js",
    "lint": "eslint lib/*.js",
    "pretest": "npm run build",
    "preversion": "cp lib/*.ts lib/es5 && git add lib/es5/*.ts",
    "test": "npm run lint && TS_NODE_COMPILER_OPTIONS='{\"strictNullChecks\":true}' mocha test/**/*.{coffee,ts}"
  },
  "types": "./lib/index.d.ts",
  "version": "4.16.3"
}
