{
  "name": "csv-writer-portable",
  "version": "1.7.6",
  "description": "Convert objects/arrays into a CSV string or write them into a CSV file (portable version)",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/brakmic/csv-writer-portable.git"
  },
  "keywords": [
    "csv",
    "writer",
    "stringify"
  ],
  "authors": [
    {
      "name": "Ryuichi Inagaki",
      "email": "ryuichi.inagaki.24@googlemail.com",
      "url": "https://github.com/ryu1kn"
    },
    {
      "name": "Harris Brakmic",
      "email": "brakmic@gmail.com",
      "url": "https://github.com/brakmic"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/brakmic/csv-writer-portable/issues"
  },
  "homepage": "https://github.com/brakmic/csv-writer-portable#readme",
  "files": [
    "dist",
    "!dist/test",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@eslint/eslintrc": "^3.1.0",
    "@eslint/js": "^9.7.0",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.10",
    "@typescript-eslint/eslint-plugin": "^7.16.0",
    "@typescript-eslint/parser": "^7.16.0",
    "codeclimate-test-reporter": "^0.5.1",
    "coveralls": "^3.1.1",
    "eslint": "^9.7.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "http-server": "^14.1.1",
    "jest": "^29.7.0",
    "nyc": "^17.0.0",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.2",
    "ts-loader": "^9.5.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.5.3",
    "webpack": "^5.93.0",
    "webpack-cli": "^5.1.4"
  },
  "browser": {
    "fs": false,
    "path": false,
    "os": false
  },
  "scripts": {
    "bundle:dev": "webpack --mode development",
    "bundle:prod": "webpack --mode production",
    "compile": "tsc -p ./",
    "compile-and-bundle": "tsc -p ./ && webpack",
    "serve": "http-server ./public -p 8080",
    "test": "npm run pretest && jest --runInBand && npm run test:it",
    "test:it": "./test-integration/test.sh",
    "pretest": "rm -rf test-tmp && mkdir test-tmp",
    "coverage": "jest --coverage",
    "lint": "eslint */**/*.ts --quiet --fix",
    "lint:ci": "eslint */**/*.ts --quiet"
  }
}