{
    "name": "csv-writer-pipe",
    "version": "1.5.2",
    "description": "Convert objects/arrays into a CSV string or write them into a CSV file",
    "main": "dist/index.js",
    "types": "src/index.ts",
    "scripts": {
        "compile": "tsc -p ./",
        "test": "npm run test:unit && npm run test:it",
        "pretest:unit": "rm -rf test-tmp && mkdir test-tmp",
        "test:unit": "mocha --require ts-node/register --recursive 'src/test/**/*.ts'",
        "test:it": "test-integration/test.sh",
        "coverage": "nyc npm run test:unit",
        "lint": "tslint -p .",
        "prepare": "npm run compile"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/ryu1kn/csv-writer.git"
    },
    "keywords": [
        "csv",
        "writer",
        "stringify"
    ],
    "author": "Dragos Costache",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/draagc/csv-writer/issues"
    },
    "homepage": "https://github.com/ryu1kn/csv-writer#readme",
    "devDependencies": {
        "@types/mocha": "^5.2.7",
        "@types/node": "^12.6.2",
        "codeclimate-test-reporter": "^0.5.0",
        "coveralls": "^3.0.5",
        "mocha": "^6.1.4",
        "nyc": "^14.1.1",
        "ts-node": "^8.3.0",
        "tslint": "^5.18.0",
        "typescript": "^3.5.3"
    }
}
