Skip to content

Commit

Permalink
Use jsonstream instead of JSONStream
Browse files Browse the repository at this point in the history
See browserify/browserify#1247 for more details.
  • Loading branch information
chadhietala committed May 7, 2015
1 parent 9e0edc9 commit 2066a05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/cmd.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

var argv = require('subarg')(process.argv.slice(2));
var JSONStream = require('JSONStream');
var JSONStream = require('jsonstream');

var sort = require('../')(argv);
var parse = JSONStream.parse([ true ]);
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"dependencies": {
"JSONStream": "~0.10.0",
"isarray": "0.0.1",
"jsonstream": "^1.0.3",
"shasum": "^1.0.0",
"subarg": "^1.0.0",
"through2": "~0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ streaming object data:

``` js
var sort = require('../')();
var JSONStream = require('JSONStream');
var JSONStream = require('jsonstream');
var parse = JSONStream.parse([ true ]);
var stringify = JSONStream.stringify();

Expand Down

0 comments on commit 2066a05

Please sign in to comment.