package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "csv-parser",
  3. "version": "3.0.0",
  4. "description": "Streaming CSV parser that aims for maximum speed as well as compatibility with the csv-spectrum test suite",
  5. "license": "MIT",
  6. "repository": "mafintosh/csv-parser",
  7. "author": "mafintosh",
  8. "maintainers": [
  9. "Andrew Powell <andrew@shellscape.org>"
  10. ],
  11. "homepage": "https://github.com/mafintosh/csv-parser",
  12. "bugs": "https://github.com/mafintosh/csv-parser/issues",
  13. "bin": {
  14. "csv-parser": "./bin/csv-parser"
  15. },
  16. "main": "index.js",
  17. "files": [
  18. "bin/csv-parser",
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "engines": {
  23. "node": ">= 10"
  24. },
  25. "scripts": {
  26. "bench": "bin/bench",
  27. "commitlint": "commitlint",
  28. "coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
  29. "lint": "eslint .",
  30. "lint-staged": "lint-staged",
  31. "security": "npm audit",
  32. "test": "ava && tsd"
  33. },
  34. "dependencies": {
  35. "minimist": "^1.2.0"
  36. },
  37. "devDependencies": {
  38. "@commitlint/cli": "^8.2.0",
  39. "@commitlint/config-conventional": "^8.0.0",
  40. "@types/node": "^12.0.0",
  41. "ava": "^2.4.0",
  42. "bops": "^1.0.0",
  43. "chalk": "^2.4.2",
  44. "concat-stream": "^2.0.0",
  45. "csv-spectrum": "^1.0.0",
  46. "eslint": "^6.4.0",
  47. "eslint-config-standard": "^14.1.0",
  48. "eslint-plugin-import": "^2.18.2",
  49. "eslint-plugin-node": "^10.0.0",
  50. "eslint-plugin-promise": "^4.1.1",
  51. "eslint-plugin-standard": "^4.0.0",
  52. "execa": "^2.1.0",
  53. "globby": "^10.0.1",
  54. "husky": "^3.0.0",
  55. "lint-staged": "^9.0.2",
  56. "loud-rejection": "^2.1.0",
  57. "nyc": "^14.1.1",
  58. "pre-commit": "^1.2.2",
  59. "strip-ansi": "^5.2.0",
  60. "text-table": "^0.2.0",
  61. "time-span": "^3.1.0",
  62. "tsd": "^0.8.0"
  63. },
  64. "directories": {
  65. "example": "examples",
  66. "test": "test"
  67. },
  68. "keywords": [
  69. "csv",
  70. "parser",
  71. "fast",
  72. "json"
  73. ],
  74. "ava": {
  75. "files": [
  76. "!**/fixtures/**",
  77. "!**/helpers/**"
  78. ]
  79. },
  80. "husky": {
  81. "hooks": {
  82. "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
  83. }
  84. },
  85. "lint-staged": {
  86. "*.js": [
  87. "eslint --fix",
  88. "git add"
  89. ]
  90. },
  91. "pre-commit": "lint-staged"
  92. }