Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stream-json

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-json - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

4

Grammar.js

@@ -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;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc