{
  "name": "@json2csv/plainjs",
  "version": "7.0.6",
  "description": "Pure Javascript JSON to CSV converter.",
  "keywords": [
    "json",
    "to",
    "csv",
    "export",
    "convert",
    "parse"
  ],
  "homepage": "http://juanjodiaz.github.io/json2csv",
  "bugs": {
    "url": "https://github.com/juanjoDiaz/json2csv/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/juanjoDiaz/json2csv.git"
  },
  "license": "MIT",
  "author": {
    "name": "Juanjo Díaz",
    "email": "juanjo.diazmo@gmail.com"
  },
  "type": "module",
  "exports": {
    "./*": {
      "import": "./dist/mjs/*",
      "require": "./dist/cjs/*"
    },
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "main": "dist/mjs/index.js",
  "scripts": {
    "lint": "eslint src test",
    "build:cjs": "tsc --module commonjs --verbatimModuleSyntax false --outDir ./dist/cjs && node ../../build-cjs.js",
    "build:mjs": "tsc --module esnext --outDir ./dist/mjs",
    "build": "npm run build:cjs && npm run build:mjs",
    "pretest": "npm run build",
    "test": "node test/CommonJS.cjs && npm run test:raw | tap-spec",
    "test-with-coverage": "c8 --reporter=text npm test",
    "test:raw": "node --loader ts-node/esm test/index.ts",
    "dependencies:update-internal": "npm uninstall @json2csv/formatters && npm install @json2csv/formatters",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@json2csv/formatters": "^7.0.6",
    "@streamparser/json": "^0.0.21"
  }
}