UNPKG

csvwriter

Version:

Create CSV from complex JSON objects with CLI or API

51 lines (50 loc) 1.45 kB
{ "name": "csvwriter", "version": "1.3.0", "description": "Create CSV from complex JSON objects with CLI or API", "keywords": [ "csv", "json", "convert", "converter", "export", "parse", "json2csv", "jsontocsv", "cli" ], "homepage": "https://github.com/GazonkFoo/csvwriter", "bugs": "https://github.com/GazonkFoo/csvwriter/issues", "license": "MIT", "author": "GazonkFoo", "main": "./lib/csvwriter.js", "bin": { "csvwriter": "./bin/csvwriter.js" }, "repository": { "type": "git", "url": "https://github.com/GazonkFoo/csvwriter.git" }, "scripts": { "test": "./node_modules/.bin/mocha -R spec --recursive", "doc": "./node_modules/.bin/jsdoc2md lib/*.js --template readme.hbs --heading-depth 2 > README.md", "coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report html -- -R spec --recursive", "coveralls": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage" }, "dependencies": { "JSONPath": "^0.11.2", "chalk": "^1.1.3", "commander": "^2.5.1", "table": "^3.8.3" }, "devDependencies": { "chai": "^3.5.0", "coveralls": "^2.11.2", "istanbul": "^0.4.4", "jsdoc-to-markdown": "^1.3.6", "mocha": "^2.1.0" }, "engines": { "node": ">=4" } }