hyparquet/package.json

41 lines
934 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
2024-07-27 00:21:27 +00:00
"version": "1.1.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 17:27:47 +00:00
"demo": "http-server -o",
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-07-26 01:03:14 +00:00
"@types/node": "20.14.12",
2024-07-23 04:51:26 +00:00
"@typescript-eslint/eslint-plugin": "7.17.0",
"@vitest/coverage-v8": "2.0.4",
2024-02-24 19:01:08 +00:00
"eslint": "8.57.0",
2023-12-29 18:48:43 +00:00
"eslint-plugin-import": "2.29.1",
2024-07-23 04:51:26 +00:00
"eslint-plugin-jsdoc": "48.8.3",
2024-01-04 17:27:47 +00:00
"http-server": "14.1.1",
2024-05-27 19:53:03 +00:00
"hyparquet-compressors": "0.1.4",
2024-07-23 04:51:26 +00:00
"typescript": "5.5.4",
"vitest": "2.0.4"
2023-12-29 17:37:37 +00:00
}
}