-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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": "incomplete-json-parser",
"version": "1.1.4",
"homepage": "https://github.com/1000ship/incomplete-json-parser",
"author": {
"name": "Dante Chun",
"email": "[email protected]",
"url": "https://dante.company"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/1000ship/incomplete-json-parser/issues"
},
"description": "A JSON parser that can parse incomplete JSON strings.",
"keywords": [
"json",
"parser",
"stream",
"streaming",
"incomplete",
"fragment"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rimraf ./dist && tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsc": "^2.0.4",
"typescript": "^5.4.5"
}
}