UNPKG

csv_4180

Version:

CSV according to RFC 4180. Everyone else's are weirdly wrong. Heavily tested; in typescript

65 lines (64 loc) 1.95 kB
{ "name": "csv_4180", "version": "0.12.0", "description": "CSV according to RFC 4180. Everyone else's are weirdly wrong. Heavily tested; in typescript", "main": "index.js", "scripts": { "clean": "rimraf -f build && rimraf -f dist && rimraf -f docs", "eslint": "eslint src/ts/**/*.ts", "typescript": "tsc", "nyc": "nyc ava build/tests/*.js", "coverage": "nyc report --reporter=text-lcov | coveralls", "test": "npm run eslint && npm run nyc", "dist": "mkdir dist && cp build/to_csv.* dist", "doc": "typedoc --out docs/docs/ src/ts/to_csv.ts && cp src/misc/.nojekyll docs", "build": "npm run clean && npm run typescript && npm run test && npm run doc && npm run dist", "travis": "npm run coverage" }, "repository": { "type": "git", "url": "git+https://github.com/StoneCypher/csv_4180.git" }, "keywords": [ "csv", "4180", "rfc4180", "rfc-4180", "tsv", "comma", "separated", "values", "seperated", "tab", "comma-separated-values" ], "author": "John Haugeland <stonecypher@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/StoneCypher/csv_4180/issues" }, "homepage": "https://github.com/StoneCypher/csv_4180#readme", "devDependencies": { "ava": "^0.24.0", "ava-spec": "^1.1.1", "coveralls": "^3.0.0", "eslint": "^4.13.1", "eslint-config-stonecypher": "^1.15.7", "eslint-plugin-ava": "^4.4.0", "eslint-plugin-flowtype": "^2.40.1", "eslint-plugin-fp": "^2.3.0", "eslint-plugin-jsdoc": "^3.3.0", "eslint-plugin-new-with-error": "^1.1.0", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-react": "^7.5.1", "eslint-plugin-typescript": "^0.8.1", "eslint-plugin-unicorn": "^3.0.1", "nyc": "^11.4.1", "rimraf": "^2.6.2", "typedoc": "^0.9.0", "typescript": "^2.6.2" }, "dependencies": { "typescript-eslint-parser": "^11.0.0" } }