hyparquet/package.json

42 lines
921 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
2024-03-19 16:15:00 +00:00
"version": "0.7.2",
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": {
2023-12-29 19:19:16 +00:00
"coverage": "vitest run --coverage",
2024-01-04 17:27:47 +00:00
"demo": "http-server -o",
2024-01-04 19:11:00 +00:00
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc"
2023-12-29 17:37:37 +00:00
},
"devDependencies": {
2024-03-19 06:54:58 +00:00
"@types/node": "20.11.30",
2024-03-18 23:36:16 +00:00
"@typescript-eslint/eslint-plugin": "7.3.1",
"@vitest/coverage-v8": "1.4.0",
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-03-13 02:58:54 +00:00
"eslint-plugin-jsdoc": "48.2.1",
2024-01-04 17:27:47 +00:00
"http-server": "14.1.1",
"hysnappy": "0.3.0",
2024-03-13 02:58:54 +00:00
"typescript": "5.4.2",
2024-03-18 23:36:16 +00:00
"vitest": "1.4.0"
2023-12-29 17:37:37 +00:00
}
}