csv-rxjs-kit
Version:
A kit of RxJS operators to handle CSV formatted (RFC 4180, MIME Type 'text/csv') data.
65 lines (64 loc) • 1.66 kB
JSON
{
"name": "csv-rxjs-kit",
"version": "1.3.1",
"description": "A kit of RxJS operators to handle CSV formatted (RFC 4180, MIME Type 'text/csv') data.",
"author": "Nikolay Postnikov <nick.postnikov@gmail.com>",
"keywords": [
"csv",
"text/csv",
"RFC 4180",
"parser",
"stringify",
"rxjs",
"observable",
"ES6",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gadicuz/csv-rxjs-kit.git"
},
"bugs": {
"url": "https://github.com/Gadicuz/csv-rxjs-kit/issues"
},
"homepage": "https://github.com/Gadicuz/csv-rxjs-kit#readme",
"files": [
"esm",
"cjs"
],
"type": "module",
"main": "./cjs/csv-rxjs-kit.js",
"module": "./esm/csv-rxjs-kit.js",
"types": "./esm/csv-rxjs-kit.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"lint": "eslint",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"peerDependencies": {
"rxjs": "^6.6.2 || ^7.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"rxjs": "^7.3.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}