-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.05 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "stream-json",
"version": "3.6.0",
"description": "A micro-library of stream components for building custom JSON and JSONC processing pipelines with a minimal memory footprint — parse, filter, and transform JSON far larger than available memory with a SAX-inspired token API, on Node.js or Web Streams.",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": "./src/index.js",
"./web": "./src/web/index.js",
"./*": "./src/*"
},
"scripts": {
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "tape6-deno --flags FO",
"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",
"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` -r -A --flags FO",
"ts-check": "tsc --noEmit",
"js-check": "tsc --project tsconfig.check.json",
"ts-test": "tape6 --flags FO 'tests/**/test-*.*ts'",
"ts-test:bun": "tape6-bun --flags FO 'tests/**/test-*.*ts'",
"ts-test:deno": "tape6-deno --flags FO 'tests/**/test-*.*ts'",
"bench": "nano-bench",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"keywords": [
"json",
"json-parser",
"parser",
"stream",
"streaming",
"streaming-json",
"sax",
"tokenizer",
"pipeline",
"filter",
"jsonc",
"web-streams",
"large-files",
"memory-efficient",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uhop/stream-json.git"
},
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"homepage": "https://github.com/uhop/stream-json#readme",
"bugs": {
"url": "https://github.com/uhop/stream-json/issues"
},
"files": [
"src",
"LICENSE",
"README.md",
"llms.txt",
"llms-full.txt"
],
"directories": {
"test": "tests"
},
"dependencies": {
"stream-chain": "^4.2.5"
},
"devDependencies": {
"@types/node": "^26.4.0",
"fast-check": "^4.9.0",
"nano-benchmark": "^1.2.0",
"prettier": "^3.9.6",
"tape-six": "^1.16.4",
"tape-six-fast-check": "^1.0.0",
"tape-six-proc": "^1.3.1",
"typescript": "^7.0.2"
},
"tape6": {
"tests": [
"/tests/web/test-*.*js"
],
"cli": [
"/tests/node/test-*.*js"
],
"importmap": {
"imports": {
"tape-six": "/node_modules/tape-six/index.js",
"tape-six/": "/node_modules/tape-six/src/",
"stream-chain": "/node_modules/stream-chain/src/node/index.js",
"stream-chain/node": "/node_modules/stream-chain/src/node/index.js",
"stream-chain/web": "/node_modules/stream-chain/src/web/index.js",
"stream-chain/core": "/node_modules/stream-chain/src/core/index.js",
"stream-chain/": "/node_modules/stream-chain/src/"
}
}
}
}