-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1023 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
{
"name": "hyparquet",
"version": "1.8.0",
"description": "parquet file parser for javascript",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
"hyparquet",
"parquet",
"parquetjs",
"parser",
"snappy",
"thrift"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hyparquet.git"
},
"main": "src/hyparquet.js",
"files": [
"types",
"src"
],
"type": "module",
"types": "types/hyparquet.d.ts",
"scripts": {
"build:types": "tsc -p ./tsconfig.build.json",
"coverage": "vitest run --coverage --coverage.include=src",
"lint": "eslint",
"prepare": "npm run build:types",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"eslint-plugin-jsdoc": "50.6.1",
"hyparquet-compressors": "1.0.0",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vitest": "2.1.8"
}
}