metaforecast/node_modules/json2csv/package.json

74 lines
1.9 KiB
JSON
Raw Normal View History

2021-01-12 12:43:41 +00:00
{
"name": "json2csv",
"version": "5.0.5",
"description": "Convert JSON to CSV",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"author": {
"name": "Mirco Zeiss",
"email": "mirco.zeiss@gmail.com",
"twitter": "zeMirco"
},
"license": "MIT",
"bin": {
"json2csv": "./bin/json2csv.js"
},
"main": "lib/json2csv.js",
"module": "dist/json2csv.esm.js",
"browser": "dist/json2csv.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/zemirco/json2csv"
},
"homepage": "http://zemirco.github.io/json2csv",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test | tap-spec",
"lint": "eslint bin lib test",
"test-with-coverage": "nyc --reporter=text node test | tap-spec",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"deploy:docs": "docpress b && gh-pages -d _docpress",
"prepublish": "in-publish && npm run before:publish || not-in-publish",
"before:publish": "npm test && npm run build && npm run deploy:docs",
"release": "standard-version"
},
"dependencies": {
"commander": "^6.1.0",
"jsonparse": "^1.3.1",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"coveralls": "^3.0.3",
"docpress": "^0.8.0",
"eslint": "^6.1.0",
"gh-pages": "^2.0.1",
"in-publish": "^2.0.0",
"nyc": "^14.1.1",
"rollup": "^1.11.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^8.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"engines": {
"node": ">= 10",
"npm": ">= 6.13.0"
},
"volta": {
"node": "10.19.0"
}
}