package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "csv-parser",
  3. "version": "1.12.1",
  4. "description": "Streaming CSV parser that aims for maximum speed as well as compatibility with the csv-spectrum test suite",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/mafintosh/csv-parser.git"
  8. },
  9. "dependencies": {
  10. "buffer-alloc": "^1.1.0",
  11. "buffer-from": "^1.0.0",
  12. "generate-function": "^1.0.1",
  13. "generate-object-property": "^1.0.0",
  14. "inherits": "^2.0.1",
  15. "minimist": "^1.2.0",
  16. "ndjson": "^1.4.0"
  17. },
  18. "devDependencies": {
  19. "bops": "^0.1.1",
  20. "concat-stream": "^1.4.5",
  21. "csv-spectrum": "^1.0.0",
  22. "standard": "^5.4.1",
  23. "tape": "^4.2.2"
  24. },
  25. "bin": {
  26. "csv-parser": "./bin.js"
  27. },
  28. "scripts": {
  29. "test": "standard && tape test/test.js"
  30. },
  31. "keywords": [
  32. "csv",
  33. "parser",
  34. "fast",
  35. "json"
  36. ],
  37. "bugs": {
  38. "url": "https://github.com/mafintosh/csv-parser/issues"
  39. },
  40. "homepage": "https://github.com/mafintosh/csv-parser",
  41. "main": "index.js",
  42. "directories": {
  43. "example": "examples",
  44. "test": "test"
  45. },
  46. "author": "mafintosh",
  47. "license": "MIT"
  48. }