{
  "name": "gocsv",
  "version": "0.1.1",
  "description": "Go's CSV package ported to JavaScript to run in browser",
  "keywords": [
    "csv",
    "go"
  ],
  "main": "dist/gocsv.umd.js",
  "module": "dist/gocsv.esm.js",
  "typings": "dist/types/gocsv.d.ts",
  "files": [
    "dist"
  ],
  "author": "Khoi Pham <pckhoi@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/pckhoi/gocsv.git"
  },
  "license": "MIT",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "tsc && rollup -c rollup.config.ts",
    "gendoc": "typedoc --excludePrivate src/gocsv.ts",
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest --coverage --useStderr",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run test -- --no-cache",
    "benchmark": "jest -c jest-bench.config.json",
    "deploy-docs": "ts-node tools/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "travis-deploy-once": "travis-deploy-once"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "prepublish": "npm run build",
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "verbose": false,
    "runner": "jest-electron/runner",
    "testEnvironment": "jest-electron/environment",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 80,
        "functions": 75,
        "lines": 85,
        "statements": 85
      }
    },
    "collectCoverageFrom": [
      "src/*.{js,ts}"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^7.1.2",
    "@types/benchmark": "^2.1.0",
    "@types/jest": "^26.0.16",
    "@types/node": "^10.11.0",
    "@typescript-eslint/eslint-plugin": "^4.11.0",
    "@typescript-eslint/parser": "^4.11.0",
    "babel-eslint": "^10.1.0",
    "colors": "^1.3.2",
    "commitizen": "^4.2.2",
    "concat-md": "^0.3.5",
    "coveralls": "^3.0.2",
    "cross-env": "^5.2.0",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^7.16.0",
    "husky": "^1.0.1",
    "jest": "^26.6.3",
    "jest-bench": "^0.1.6",
    "jest-config": "^26.6.3",
    "jest-electron": "^0.1.11",
    "lint-staged": "^8.0.0",
    "lodash.camelcase": "^4.3.0",
    "papaparse": "^5.3.0",
    "prettier": "^1.14.3",
    "prompt": "^1.0.0",
    "replace-in-file": "^3.4.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.67.0",
    "rollup-plugin-base64": "^1.0.1",
    "rollup-plugin-commonjs": "^9.1.8",
    "rollup-plugin-json": "^3.1.0",
    "rollup-plugin-node-resolve": "^3.4.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-typescript2": "^0.29.0",
    "shelljs": "^0.8.3",
    "travis-deploy-once": "^5.0.9",
    "ts-jest": "^26.4.4",
    "ts-node": "^7.0.1",
    "typedoc": "^0.20.18",
    "typedoc-plugin-markdown": "^3.4.3",
    "typescript": "^3.0.3"
  },
  "dependencies": {}
}
