package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "stream-json",
  3. "version": "1.9.1",
  4. "description": "stream-json is the micro-library of Node.js stream components for creating custom JSON processing pipelines with a minimal memory footprint. It can parse JSON files far exceeding available memory streaming individual primitives using a SAX-inspired API. Includes utilities to stream JSON database dumps.",
  5. "homepage": "http://github.com/uhop/stream-json",
  6. "bugs": "http://github.com/uhop/stream-json/issues",
  7. "main": "index.js",
  8. "directories": {
  9. "test": "tests"
  10. },
  11. "dependencies": {
  12. "stream-chain": "^2.2.5"
  13. },
  14. "devDependencies": {
  15. "heya-unit": "^0.3.0"
  16. },
  17. "scripts": {
  18. "test": "node tests/tests.js",
  19. "debug": "node --inspect-brk tests/tests.js"
  20. },
  21. "github": "http://github.com/uhop/stream-json",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/uhop/stream-json.git"
  25. },
  26. "keywords": [
  27. "scanner",
  28. "lexer",
  29. "tokenizer",
  30. "parser",
  31. "django",
  32. "stream",
  33. "streaming",
  34. "json"
  35. ],
  36. "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://lazutkin.com/)",
  37. "license": "BSD-3-Clause",
  38. "files": [
  39. "/*.js",
  40. "/filters",
  41. "/jsonl",
  42. "/streamers",
  43. "/utils"
  44. ]
  45. }