Skip to content

Commit

Permalink
chore: establish fork - update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
yocontra committed Aug 11, 2020
1 parent 2bb834d commit 5540123
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
package-lock.json
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ndjson",
"version": "1.5.0",
"name": "ndjson-next",
"version": "1.5.1",
"description": "streaming newline delimited json parser + serializer",
"main": "index.js",
"scripts": {
Expand All @@ -13,22 +13,22 @@
"license": "BSD-3-Clause",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"minimist": "^1.2.0",
"split2": "^2.1.0",
"through2": "^2.0.3"
"minimist": "^1.2.5",
"split2": "^3.0.0",
"through2": "^4.0.0"
},
"devDependencies": {
"concat-stream": "^1.5.0",
"tape": "^4.6.3"
"concat-stream": "^2.0.0",
"tape": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/maxogden/ndjson.git"
"url": "git://github.com/contra/ndjson.git"
},
"bugs": {
"url": "https://github.com/maxogden/ndjson/issues"
"url": "https://github.com/contra/ndjson/issues"
},
"homepage": "https://github.com/maxogden/ndjson",
"homepage": "https://github.com/contra/ndjson",
"keywords": [
"ndjson",
"ldjson"
Expand Down
13 changes: 10 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# ndjson
# Fork Notes

- Updates all dependencies
- Promises to stay maintained and responsive to PRs

All thanks to the original maintainer Max Ogden.

# ndjson-next

streaming [newline delimited json](https://en.wikipedia.org/wiki/Line_Delimited_JSON) parser + serializer. Available as a JS API or a command line tool

[![NPM](https://nodei.co/npm/ndjson.png)](https://nodei.co/npm/ndjson/)
[![NPM](https://nodei.co/npm/ndjson-next.png)](https://nodei.co/npm/ndjson-next/)

## usage

```
var ndjson = require('ndjson')
var ndjson = require('ndjson-next')
```

#### ndjson.parse(opts)
Expand Down

0 comments on commit 5540123

Please sign in to comment.