hyparquet/package.json
2024-01-04 09:39:00 -08:00

39 lines
869 B
JSON

{
"name": "hyparquet",
"version": "0.1.0",
"description": "parquet file parser for javascript",
"keywords": [
"parquet",
"parser"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyparam/hyparquet"
},
"main": "dist/hyparquet.js",
"files": [
"dist"
],
"type": "module",
"types": "dist/hyparquet.d.ts",
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"demo": "http-server -o",
"lint": "eslint . --ext .ts",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@vitest/coverage-v8": "1.1.2",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.0.2",
"http-server": "14.1.1",
"typescript": "5.3.3",
"vitest": "1.1.2"
}
}