{
  "name": "@json2csv/formatters",
  "version": "7.0.6",
  "description": "json2csv built-in formatters. A formatter is a function that receives the raw js value of a given type and formats it as a valid CSV cell.",
  "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",
    "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",
    "test": "echo \"Error: no test specified\" && exit 1",
    "prepublishOnly": "npm run build"
  }
}
