{
  "name": "csv",
  "version": "6.3.11",
  "description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
  "keywords": [
    "node",
    "csv",
    "tsv",
    "parser",
    "parse",
    "stringifier",
    "stringify",
    "transform",
    "stream",
    "generate",
    "generation",
    "backend",
    "frontend"
  ],
  "bugs": "https://github.com/adaltas/node-csv/issues",
  "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
  "contributors": [
    "David Worms <david@adaltas.com> (https://www.adaltas.com)"
  ],
  "dependencies": {
    "csv-generate": "^4.4.2",
    "csv-parse": "^5.6.0",
    "csv-stringify": "^6.5.2",
    "stream-transform": "^3.3.3"
  },
  "devDependencies": {
    "@eslint/js": "^9.15.0",
    "@rollup/plugin-node-resolve": "^15.3.0",
    "@types/mocha": "^10.0.9",
    "@types/node": "^22.9.1",
    "coffeescript": "~2.7.0",
    "each": "^2.7.2",
    "eslint": "^9.15.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-mocha": "^10.5.0",
    "eslint-plugin-prettier": "^5.2.1",
    "mocha": "~10.8.2",
    "prettier": "^3.3.3",
    "rollup": "^4.27.3",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0",
    "should": "~13.2.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.6.3"
  },
  "engines": {
    "node": ">= 0.1.90"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./lib/index.d.ts",
        "default": "./lib/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./sync": {
      "import": {
        "types": "./lib/sync.d.ts",
        "default": "./lib/sync.js"
      },
      "require": {
        "types": "./dist/cjs/sync.d.cts",
        "default": "./dist/cjs/sync.cjs"
      }
    },
    "./browser/esm": {
      "types": "./lib/index.d.ts",
      "default": "./dist/esm/index.js"
    },
    "./browser/esm/sync": {
      "types": "./lib/sync.d.ts",
      "default": "./dist/esm/sync.js"
    }
  },
  "homepage": "https://csv.js.org",
  "files": [
    "dist",
    "lib"
  ],
  "license": "MIT",
  "main": "./dist/cjs/index.cjs",
  "mocha": {
    "inline-diffs": true,
    "loader": "./test/loaders/all.js",
    "recursive": true,
    "reporter": "spec",
    "require": [
      "should"
    ],
    "throw-deprecation": false,
    "timeout": 40000
  },
  "lint-staged": {
    "*.js": "npm run lint:fix",
    "*.md": "prettier -w"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/adaltas/node-csv.git",
    "directory": "packages/csv"
  },
  "scripts": {
    "build": "npm run build:rollup && npm run build:ts",
    "build:rollup": "npx rollup -c",
    "build:ts": "cp lib/index.d.ts dist/cjs/index.d.cts && cp lib/sync.d.ts dist/cjs/sync.d.cts && cp lib/*.ts dist/esm",
    "postbuild:ts": "find dist/cjs -name '*.d.cts' -exec sh -c \"sed -i \"s/\\.js'/\\.cjs'/g\" {} || sed -i '' \"s/\\.js'/\\.cjs'/g\" {}\" \\;",
    "lint:check": "eslint",
    "lint:fix": "eslint --fix",
    "lint:ts": "tsc --noEmit true",
    "preversion": "npm run build && git add dist",
    "test": "mocha 'test/**/*.{coffee,ts}'",
    "test:legacy": "mocha --ignore test/samples.coffee  --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}'"
  },
  "type": "module",
  "types": "dist/esm/index.d.ts",
  "typesVersions": {
    "*": {
      ".": [
        "dist/esm/index.d.ts"
      ],
      "sync": [
        "dist/esm/sync.d.ts"
      ],
      "browser/esm": [
        "dist/esm/index.d.ts"
      ],
      "browser/esm/sync": [
        "dist/esm/sync.d.ts"
      ]
    }
  },
  "gitHead": "cc1235a58de98dd9eab0665c7b1d03213e9633c7"
}
