hyparquet/package.json

38 lines
820 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
2024-11-21 21:12:26 +00:00
"version": "1.6.0",
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": {
"@types/node": "22.8.6",
2024-10-29 06:03:31 +00:00
"@vitest/coverage-v8": "2.1.4",
"eslint": "9.14.0",
2024-10-20 00:02:03 +00:00
"eslint-plugin-jsdoc": "50.4.3",
2024-05-27 19:53:03 +00:00
"hyparquet-compressors": "0.1.4",
2024-10-16 08:35:13 +00:00
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
2024-10-29 06:03:31 +00:00
"vitest": "2.1.4"
2023-12-29 17:37:37 +00:00
}
}