-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
65 lines (65 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "stream-json",
"version": "2.0.0",
"description": "stream-json is the micro-library of Node.js stream components for creating custom JSON processing pipelines with a minimal memory footprint. It can parse JSON files far exceeding available memory streaming individual primitives using a SAX-inspired API. Includes utilities to stream JSON database dumps.",
"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:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
"ts-check": "tsc --noEmit",
"ts-demo": "node --experimental-strip-types ts-test/demo.mts"
},
"keywords": [
"scanner",
"lexer",
"tokenizer",
"parser",
"django",
"stream",
"streaming",
"json"
],
"github": "http://github.com/uhop/stream-json",
"repository": {
"type": "git",
"url": "git://github.com/uhop/stream-json.git"
},
"author": "Eugene Lazutkin <[email protected]> (http://lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"homepage": "http://github.com/uhop/stream-json",
"bugs": "http://github.com/uhop/stream-json/issues",
"files": [
"/*.js",
"/filters",
"/jsonl",
"/streamers",
"/utils"
],
"directories": {
"test": "tests"
},
"dependencies": {
"stream-chain": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.8.6",
"nano-benchmark": "^1.0.4",
"tape-six": "^1.0.2",
"tape-six-proc": "^1.0.0",
"typescript": "^5.6.3"
},
"tape6": {
"tests": [
"/tests/test-*.mjs"
]
}
}