├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── benchmark └── throughput.js ├── lib ├── json-depth-stream.js └── query.js ├── package.json └── test └── api-test.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/throughput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/benchmark/throughput.js -------------------------------------------------------------------------------- /lib/json-depth-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/lib/json-depth-stream.js -------------------------------------------------------------------------------- /lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/lib/query.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indutny/json-depth-stream/HEAD/test/api-test.js --------------------------------------------------------------------------------