hyparquet/package.json

41 lines
925 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
2024-12-11 00:19:31 +00:00
"version": "1.6.4",
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": [
"types",
2024-01-04 19:11:00 +00:00
"src"
2023-12-29 17:37:37 +00:00
],
"type": "module",
"types": "types/hyparquet.d.ts",
2023-12-29 17:37:37 +00:00
"scripts": {
"build:types": "tsc -p ./tsconfig.build.json",
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 .",
"prepare": "npm run build:types",
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",
2024-12-06 03:11:53 +00:00
"@vitest/coverage-v8": "2.1.8",
2024-11-29 22:06:46 +00:00
"eslint": "9.16.0",
"eslint-plugin-jsdoc": "50.6.0",
2024-12-11 00:19:31 +00:00
"hyparquet-compressors": "1.0.0",
2024-11-29 22:06:46 +00:00
"typescript": "5.7.2",
2024-12-11 00:19:31 +00:00
"typescript-eslint": "8.18.0",
2024-12-06 03:11:53 +00:00
"vitest": "2.1.8"
2023-12-29 17:37:37 +00:00
}
}