stream-json
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -28,4 +28,4 @@ /* UMD.define */ (typeof define=="function"&&define||function(d,f,m){m={module:module,require:require};module.exports=f.apply(null,d.map(function(n){return m[n]||require(n)}))}) | ||
number: [any("0", [nonZero, repeat(numericChunk)]), | ||
maybe(".", repeat(numericChunk)), maybe(exponent, maybe(maybe(any("-", "+")), | ||
repeat(numericChunk)))] | ||
maybe(".", repeat(numericChunk)), maybe(exponent, maybe(any("-", "+")), | ||
repeat(numericChunk))] | ||
}); | ||
@@ -32,0 +32,0 @@ |
{ | ||
"name": "stream-json", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "stream-json is a collection of node.js 0.10 stream components for creating custom standard-compliant JSON processors, which requires a minimal memory footprint. It can parse JSON files far exceeding available memory. Even individual data items are streamed piece-wise. Streaming SAX-inspired event-based API is included as well.", | ||
@@ -12,3 +12,3 @@ "homepage": "http://github.com/uhop/stream-json", | ||
"dependencies": { | ||
"parser-toolkit": ">=0.0.2" | ||
"parser-toolkit": ">=0.0.3" | ||
}, | ||
@@ -15,0 +15,0 @@ "devDependencies": {}, |
@@ -16,3 +16,3 @@ var Scanner = require("parser-toolkit/Scanner"); | ||
this._scanner = new Scanner(); | ||
this._parser = new JsonParser(json.main); | ||
this._parser = new JsonParser(json); | ||
@@ -19,0 +19,0 @@ var self = this; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
192458
Updatedparser-toolkit@>=0.0.3