hyparquet/package.json

38 lines
821 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
"version": "1.6.1",
2023-12-29 17:37:37 +00:00
"description": "parquet file parser for javascript",
"keywords": [
"parquet",
2024-01-05 09:39:59 +00:00
"parser",
"snappy",
"thrift"
2023-12-29 17:37:37 +00:00
],
"license": "MIT",
"repository": {
"type": "git",
2024-01-04 19:26:07 +00:00
"url": "git+https://github.com/hyparam/hyparquet.git"
2023-12-29 17:37:37 +00:00
},
2024-01-04 19:11:00 +00:00
"main": "src/hyparquet.js",
2023-12-29 17:37:37 +00:00
"files": [
2024-01-04 19:11:00 +00:00
"src"
2023-12-29 17:37:37 +00:00
],
"type": "module",
2024-01-04 19:11:00 +00:00
"types": "src/hyparquet.d.ts",
2023-12-29 17:37:37 +00:00
"scripts": {
2024-04-18 00:45:15 +00:00
"coverage": "vitest run --coverage --coverage.include=src",
2024-01-04 19:11:00 +00:00
"lint": "eslint .",
2024-06-28 00:27:12 +00:00
"test": "vitest run"
2023-12-29 17:37:37 +00:00
},
"devDependencies": {
2024-11-29 22:06:46 +00:00
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.6",
"eslint": "9.16.0",
"eslint-plugin-jsdoc": "50.6.0",
2024-05-27 19:53:03 +00:00
"hyparquet-compressors": "0.1.4",
2024-11-29 22:06:46 +00:00
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vitest": "2.1.6"
2023-12-29 17:37:37 +00:00
}
}