{
    "author": {
        "name": "Mike Rodrigues",
        "email": "rodrigues.mi@northeastern.edu"
    },
    "name": "json-2-csv",
    "description": "A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.",
    "version": "3.20.0",
    "homepage": "https://mrodrig.github.io/json-2-csv",
    "repository": {
        "type": "git",
        "url": "https://github.com/mrodrig/json-2-csv.git"
    },
    "bugs": {
        "url": "https://github.com/mrodrig/json-2-csv/issues"
    },
    "main": "lib/converter.js",
    "types": "./lib/converter.d.ts",
    "scripts": {
        "test": "mocha test/tests.js",
        "coverage": "nyc --reporter=lcov --reporter=text-summary --reporter=text _mocha",
        "coveralls": "nyc report --reporter=text-lcov | coveralls",
        "lint": "npm run lint:eslint && npm run lint:tslint",
        "lint:eslint": "eslint lib test",
        "lint:tslint": "tslint -c tslint.json 'lib/**/*.ts'"
    },
    "keywords": [
        "json",
        "to",
        "csv",
        "converter",
        "export",
        "json2csv",
        "csv2json",
        "parse",
        "parser",
        "json-2-csv",
        "csv-2-json",
        "cli"
    ],
    "dependencies": {
        "deeks": "2.6.1",
        "doc-path": "3.1.0"
    },
    "devDependencies": {
        "@babel/eslint-parser": "7.19.1",
        "coveralls": "3.1.1",
        "eslint": "8.34.0",
        "mocha": "10.2.0",
        "nyc": "15.1.0",
        "should": "13.2.3",
        "tslint": "6.1.3",
        "typescript": "4.9.5"
    },
    "engines": {
        "node": ">= 12"
    },
    "license": "MIT"
}
