-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 761 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "ndjson",
"version": "1.5.0",
"description": "streaming newline delimited json parser + serializer",
"main": "index.js",
"scripts": {
"test": "tape test.js"
},
"bin": {
"ndjson": "cli.js"
},
"author": "max ogden",
"license": "BSD-3-Clause",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"minimist": "^1.2.0",
"split2": "^2.1.0",
"through2": "^2.0.3"
},
"devDependencies": {
"concat-stream": "^1.5.0",
"tape": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git://github.com/maxogden/ndjson.git"
},
"bugs": {
"url": "https://github.com/maxogden/ndjson/issues"
},
"homepage": "https://github.com/maxogden/ndjson",
"keywords": [
"ndjson",
"ldjson"
]
}