-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 786 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 786 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
37
38
39
40
41
{
"name": "csv-streamify",
"version": "4.0.0",
"description": "Streaming CSV Parser. Made entirely out of streams.",
"author": "Clemens Stolle",
"main": "csv-streamify.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "standard",
"test": "mocha -R spec"
},
"bin": {
"csv-streamify": "cli.js"
},
"repository": "https://github.com/klaemo/csv-stream",
"keywords": [
"csv",
"parser",
"stream",
"cli"
],
"license": "BSD-2-Clause",
"dependencies": {
"through2": "2.0.3"
},
"devDependencies": {
"csv-spectrum": "^1.0.0",
"mocha": "^5.0.5",
"standard": "^11.0.1",
"string-to-stream": "^1.0.1"
},
"engines": {
"node": ">=4"
},
"files": [
"csv-streamify.js",
"cli.js"
]
}