hyparquet/package.json

36 lines
778 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",
"url": "https://github.com/hyparam/hyllama"
},
"main": "dist/hyparquet.js",
"files": [
"dist"
],
"type": "module",
"types": "dist/hyparquet.d.ts",
"scripts": {
2023-12-29 18:48:43 +00:00
"build": "tsc",
2023-12-29 19:19:16 +00:00
"coverage": "vitest run --coverage",
2023-12-29 19:09:39 +00:00
"lint": "eslint . --ext .ts",
"test": "vitest run"
2023-12-29 17:37:37 +00:00
},
"devDependencies": {
2023-12-29 19:09:39 +00:00
"@typescript-eslint/eslint-plugin": "6.16.0",
2023-12-29 19:19:16 +00:00
"@vitest/coverage-v8": "1.1.0",
2023-12-29 18:48:43 +00:00
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "46.9.1",
2023-12-29 19:09:39 +00:00
"typescript": "5.3.3",
"vitest": "1.1.0"
2023-12-29 17:37:37 +00:00
}
}