csv-string
Version:
PARSE and STRINGIFY for CSV strings. It's like JSON object but for CSV. It can also work row by row. And, if can parse strings, it can be use to parse files or streams too.
85 lines (84 loc) • 1.94 kB
JSON
{
"name": "csv-string",
"version": "4.1.1",
"description": "PARSE and STRINGIFY for CSV strings. It's like JSON object but for CSV. It can also work row by row. And, if can parse strings, it can be use to parse files or streams too.",
"keywords": [
"csv",
"parser",
"string",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/Inist-CNRS/node-csv-string"
},
"license": "MIT",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",
"contributors": [
{
"name": "Mehul Mohan",
"url": "https://github.com/mehulmpt"
},
{
"name": "Hossam Magdy",
"url": "https://github.com/hossam-magdy"
},
{
"name": "Rich",
"url": "https://github.com/rich-TIA"
},
{
"name": "Stéphane Gully",
"url": "https://github.com/kerphi"
},
{
"name": "J Baumbach",
"url": "https://github.com/jbaumbach"
},
{
"name": "Sam Hauglustaine",
"url": "https://github.com/smhg"
},
{
"name": "Rick Huizinga",
"url": "https://github.com/rickhuizinga"
},
{
"name": "François Parmentier",
"url": "https://github.com/parmentf"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint --ext js,ts .",
"test": "jest --coverage",
"bench": "./bench/_bench.sh",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0"
}
}