-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 935 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
{
"name": "jsooner",
"version": "1.0.9",
"description": "Parse long JSON streams faster.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "tsc",
"coverage": "vitest --coverage.enabled true",
"start": "npm run build && node dist/index.js",
"test-ci": "vitest run --coverage.enabled --coverage.reporter=\"text-summary\"",
"test-coverage": "vitest run --coverage",
"test-dev": "vitest",
"test": "vitest"
},
"keywords": [
"json",
"parser",
"stream"
],
"files": [
"dist"
],
"github": "https://github.com/vnau/jsooner",
"repository": {
"type": "git",
"url": "git+https://github.com/vnau/jsooner.git"
},
"author": "vnau",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}