-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "stream-csv-as-json",
"version": "2.0.1",
"description": "stream-csv-as-json is a micro-library of Node.js stream components for creating custom CSV processing pipelines with a minimal memory footprint. It can parse CSV files far exceeding available memory streaming individual primitives using a SAX-inspired API.",
"type": "commonjs",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./*": "./src/*"
},
"scripts": {
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "tape6-deno --flags FO",
"test:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `tape6-proc --self` --flags FO",
"test:proc:deno": "deno run -A `tape6-proc --self` --flags FO -r -A",
"test:seq": "tape6-seq --flags FO",
"test:seq:bun": "bun run `tape6-seq --self` --flags FO",
"test:seq:deno": "deno run -A `tape6-seq --self` --flags FO",
"ts-check": "tsc --noEmit",
"ts-test": "tape6 --flags FO 'tests/test-*.*ts'",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/uhop/stream-csv-as-json.git"
},
"keywords": [
"scanner",
"lexer",
"tokenizer",
"parser",
"csv",
"stream",
"streaming"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uhop/stream-csv-as-json/issues"
},
"homepage": "https://github.com/uhop/stream-csv-as-json#readme",
"files": [
"src",
"LICENSE",
"README.md",
"llms.txt",
"llms-full.txt"
],
"directories": {
"test": "tests"
},
"dependencies": {
"stream-chain": "^3.6.1",
"stream-json": "^2.1.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"tape-six": "^1.7.13",
"tape-six-proc": "^1.2.8",
"typescript": "^6.0.2"
},
"tape6": {
"tests": [
"/tests/test-*.*js"
]
}
}