stream-json
Advanced tools
Comparing version 1.0.3 to 1.1.0
{ | ||
"name": "stream-json", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"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.", | ||
@@ -12,3 +12,3 @@ "homepage": "http://github.com/uhop/stream-json", | ||
"dependencies": { | ||
"stream-chain": "^2.0.2" | ||
"stream-chain": "^2.0.3" | ||
}, | ||
@@ -15,0 +15,0 @@ "devDependencies": { |
@@ -33,2 +33,3 @@ # stream-json | ||
* [Assembler](https://github.com/uhop/stream-json/wiki/Assembler) interprets a token stream creating JavaScript objects. | ||
* [Disassembler](https://github.com/uhop/stream-json/wiki/Disassembler) produces a token stream from JavaScript objects. | ||
* [Stringer](https://github.com/uhop/stream-json/wiki/Stringer) converts a token stream back into a JSON text stream. | ||
@@ -101,2 +102,3 @@ * [Emitter](https://github.com/uhop/stream-json/wiki/Emitter) reads a token stream and emits each token as an event. | ||
- 1.1.0 *added `Disassembler`.* | ||
- 1.0.3 *minor tweaks, added TypeScript typings and the badge.* | ||
@@ -103,0 +105,0 @@ - 1.0.2 *minor tweaks, documentation improvements.* |
@@ -20,3 +20,4 @@ 'use strict'; | ||
require('./test_ignore'); | ||
require('./test_disassembler'); | ||
unit.run(); |
Sorry, the diff of this file is not supported yet
180831
44
3429
136
5
213
Updatedstream-chain@^2.0.3