UNPKG

json-to-csv-export

Version:

Easily generate csv downloads of your json data.

61 lines (60 loc) 1.77 kB
{ "name": "json-to-csv-export", "version": "3.1.2", "description": "Easily generate csv downloads of your json data.", "files": [ "/lib" ], "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "types": "./lib/esm/index.d.ts", "author": "Coston Perkins (https://coston.io)", "homepage": "https://github.com/coston/json-to-csv-export", "repository": { "type": "git", "url": "https://github.com/coston/json-to-csv-export.git" }, "bugs": { "url": "https://github.com/coston/json-to-csv-export/issues" }, "license": "MIT", "engines": { "node": ">=12.17.0" }, "scripts": { "build": "npm run build:esm && npm run build:cjs", "build:cjs": "tsc --module commonjs --outDir lib/cjs", "build:esm": "tsc", "clean": "rm -rf lib", "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", "dev": "npm run build && rapid dev & npm run watch", "rapid": "rapid dev", "docs": "npm run build && rapid build", "format": "prettier --write 'src/**/*.ts'", "postpublish": "git push && git push --tag", "preversion": "npm run test && npm run format && npm run clean && npm run build && npm run docs", "start": "npm run build; npm run dev", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "watch": "tsc --watch" }, "devDependencies": { "@types/jest": "^28.1.6", "@types/jsdom": "^20.0.0", "@types/react": "18.0.28", "coveralls": "^3.0.2", "jest": "^28.1.3", "jest-environment-jsdom": "^28.1.3", "prettier": "3.0.1", "rapid-react-pkg-demo": "^0.5.1", "ts-jest": "^28.0.7", "typescript": "^4.7.4" }, "keywords": [ "json", "csv", "download", "web" ] }