hyparquet/package.json
Kenny Daniel 819691f51c
eslint
2023-12-29 10:48:49 -08:00

31 lines
602 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/hyllama"
},
"main": "dist/hyparquet.js",
"files": [
"dist"
],
"type": "module",
"types": "dist/hyparquet.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "46.9.1",
"typescript": "5.3.3"
}
}