json-2-csv
Version:
A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.
57 lines (56 loc) • 1.5 kB
JSON
{
"author": {
"name": "Mike Rodrigues",
"email": "rodrigues.mi@husky.neu.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.7.5",
"repository": {
"type": "git",
"url": "https://github.com/mrodrig/json-2-csv.git"
},
"bugs": {
"url": "https://github.com/mrodrig/json-2-csv/issues"
},
"main": "./src/converter.js",
"types": "./src/converter.d.ts",
"scripts": {
"test": "mocha test/tests.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary --reporter=text _mocha",
"lint": "npm run lint:eslint && npm run lint:tslint",
"lint:eslint": "eslint src test",
"lint:tslint": "tslint -c tslint.json 'src/**/*.ts'"
},
"keywords": [
"json",
"to",
"csv",
"converter",
"export",
"json2csv",
"csv2json",
"parse",
"parser",
"json-2-csv",
"csv-2-json",
"cli"
],
"dependencies": {
"deeks": "2.2.6",
"doc-path": "2.0.4"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"mocha": "7.1.2",
"nyc": "15.0.1",
"should": "13.2.3",
"tslint": "6.1.2",
"typescript": "3.8.3"
},
"engines": {
"node": ">= 8"
},
"license": "MIT"
}