-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.05 KB
/
package.json
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
42
43
{
"name": "csv-batch",
"version": "2.0.6",
"description": "Fast CSV parser that can batch events, reduce on rows, and no dependencies",
"main": "index.js",
"scripts": {
"test": "eslint . && nyc --reporter=html --reporter=text-summary --reporter=lcov mocha --recursive --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jtwebman/csv-batch.git"
},
"keywords": [
"csv",
"parser",
"fast",
"batch",
"tsv",
"parse",
"json"
],
"author": "JT Turner <[email protected]> (https://jtwebman.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtwebman/csv-batch/issues"
},
"homepage": "https://github.com/jtwebman/csv-batch#readme",
"devDependencies": {
"chai": "4.3.6",
"csv-spectrum": "1.0.0",
"eslint": "8.19.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-prettier": "4.2.1",
"lodash": "4.17.21",
"mocha": "10.0.0",
"nyc": "15.1.0",
"prettier": "2.7.1"
},
"dependencies": {},
"engines": {
"node": ">=10"
}
}