csv-builder
Version:
Easily encode complex JSON objects to CSV with CsvBuilder's schema-like API
40 lines (39 loc) • 881 B
JSON
{
"name": "csv-builder",
"author": "Nick Pisacane <pisacanen@gmail.com>",
"version": "1.0.1",
"description": "Easily encode complex JSON objects to CSV with CsvBuilder's schema-like API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickpisacane/CsvBuilder"
},
"keywords": [
"csv",
"csv encoder",
"json to csv",
"object to csv",
"csv stream",
"csv exporter"
],
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.pick": "^4.4.0"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && mocha test/**/*.test.js",
"test:watch": "watch-run -i -p 'lib/**/*.js,test/**/*.js' npm run test"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.5.3",
"standard": "^10.0.3",
"watch-run": "^1.2.5"
},
"standard": {
"ignore": [
"test"
]
}
}