-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "csv-to-json-parser",
"version": "1.0.0",
"description": "Node stream practical example",
"main": "index.js",
"scripts": {
"parse": "node parse.js",
"parse-with-iterator": "node parse-async-iteration.js",
"parse-big": "node parse.js --useBigFile",
"parse-big-with-iterator": "node parse-async-iteration.js --useBigFile",
"generate-big-file-with-iterator": "node generate-async-iteration.js",
"generate-big-file": "node generate.js"
},
"author": "Artsiom Kushal <stdart9@gmail.com>",
"license": "ISC",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"prettier-eslint": "^9.0.1"
}
}