UNPKG

fast-csv

Version:
59 lines (58 loc) 1.53 kB
{ "name": "fast-csv", "version": "3.1.0", "description": "CSV parser and writer", "main": "./build/src/index.js", "types": "./build/src/index.d.ts", "scripts": { "prepublish": "npm run build", "build": "tsc", "mocha": "nyc mocha", "test": "npm run eslint && npm run mocha", "eslint": "eslint --ext=.js,.ts src/ test/ examples/", "eslint-fix": "eslint --ext=.js,.ts src/ test/ examples/", "benchmark": "node ./benchmark", "coverage": "nyc report --reporter=text-lcov | coveralls" }, "repository": { "type": "git", "url": "git@github.com:C2FO/fast-csv.git" }, "keywords": [ "csv", "parser", "fast", "writer", "csv writer", "CSV" ], "homepage": "http://c2fo.github.com/fast-csv/index.html", "author": "Doug Martin", "license": "MIT", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^0.1.3", "@types/mocha": "^5.2.6", "@types/sinon": "^7.0.12", "@typescript-eslint/eslint-plugin": "^1.9.0", "@typescript-eslint/parser": "^1.9.0", "coveralls": "^3.0.3", "eslint": "^5.15.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-import": "^2.16.0", "husky": "^2.3.0", "mocha": "^6.1.4", "nyc": "^14.1.0", "sinon": "^7.3.2", "source-map-support": "^0.5.12", "ts-node": "^8.2.0", "typescript": "^3.4.5" }, "engines": { "node": ">=8.0.0" }, "dependencies": { "@types/lodash": "^4.14.132", "@types/node": "^12.0.2", "lodash": "^4.17.13" } }