package.json 761 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "ndjson",
  3. "version": "1.5.0",
  4. "description": "streaming newline delimited json parser + serializer",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tape test.js"
  8. },
  9. "bin": {
  10. "ndjson": "cli.js"
  11. },
  12. "author": "max ogden",
  13. "license": "BSD-3-Clause",
  14. "dependencies": {
  15. "json-stringify-safe": "^5.0.1",
  16. "minimist": "^1.2.0",
  17. "split2": "^2.1.0",
  18. "through2": "^2.0.3"
  19. },
  20. "devDependencies": {
  21. "concat-stream": "^1.5.0",
  22. "tape": "^4.6.3"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/maxogden/ndjson.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/maxogden/ndjson/issues"
  30. },
  31. "homepage": "https://github.com/maxogden/ndjson",
  32. "keywords": [
  33. "ndjson",
  34. "ldjson"
  35. ]
  36. }