-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 984 Bytes
/
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
{
"name": "@lantzkidwell/streamingjsonparser",
"version": "1.0.0",
"description": "StreamingJsonParser is a robust and flexible JSON parsing library for Node.js that supports both synchronous and asynchronous parsing of JSON data streams.",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc"
},
"keywords": [
"json",
"streaming"
],
"author": "Lantz Kidwell",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"npm": "^10.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}