{
  "name": "@vanillaes/csv",
  "version": "4.0.7",
  "description": "A modern, fast, RFC 4180 compliant parser for JS",
  "keywords": [
    "esm",
    "esmodule",
    "csv",
    "csv-parser",
    "rfc4180"
  ],
  "license": "MIT",
  "contributors": [
    {
      "name": "Evan Plaice",
      "email": "evan.plaice@gmail.com",
      "url": "http://evanplaice.com"
    },
    {
      "name": "Colton Ehrman",
      "email": "coltonje95@gmail.com",
      "url": "http://coltonehrman.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vanillaes/csv.git"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./src/index.js",
      "types": "./src/index.d.ts",
      "browser": "./src/index.min.js"
    }
  },
  "scripts": {
    "test": "tape-es",
    "test:watch": "tape-es --watch",
    "lint": "esmtk lint",
    "type": "esmtk type ./src/index.js",
    "build": "npm run build:min && npm run build:typings",
    "build:min": "esmtk minify ./src/index.js ./src/index.min.js",
    "build:typings": "esmtk typings ./src/index.js",
    "clean": "esmtk clean --minify --typings",
    "preview": "esmtk preview",
    "preversion": "npm test && npm run lint && npm run type",
    "postversion": "git push --follow-tags"
  },
  "devDependencies": {
    "@vanillaes/esmtk": "^1.2.3"
  }
}
