hyparquet/package.json

39 lines
860 B
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
"version": "0.1.0",
"description": "parquet file parser for javascript",
"keywords": [
"parquet",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
2024-01-03 18:33:37 +00:00
"url": "https://github.com/hyparam/hyparquet"
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-01-03 18:33:37 +00:00
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
2024-01-04 17:27:47 +00:00
"@vitest/coverage-v8": "1.1.2",
2023-12-29 18:48:43 +00:00
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
2024-01-03 18:33:37 +00:00
"eslint-plugin-jsdoc": "48.0.2",
2024-01-04 17:27:47 +00:00
"http-server": "14.1.1",
2023-12-29 19:09:39 +00:00
"typescript": "5.3.3",
2024-01-04 17:27:47 +00:00
"vitest": "1.1.2"
2023-12-29 17:37:37 +00:00
}
}