-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 940 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "vega-loader-parquet",
"version": "0.1.0",
"description": "Data loader for the Apache Parquet format.",
"keywords": [
"vega",
"loader",
"parquet"
],
"license": "BSD-3-Clause",
"author": "Dominik Moritz (https://www.domoritz.de)",
"type": "module",
"exports": {
"default": "./src/index.js"
},
"unpkg": "build/vega-loader-parquet.min.js",
"jsdelivr": "build/vega-loader-parquet.min.js",
"repository": "vega/vega-loader-parquet",
"scripts": {
"prebuild": "rimraf build && mkdir build",
"build": "rollup -c rollup.config.js",
"pretest": "npm run build",
"test": "tape 'test/**/*-test.js' && eslint src test"
},
"dependencies": {
"hyparquet": "^1.16.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.29.0",
"rimraf": "^6.0.1",
"rollup": "^4.44.0",
"tape": "^5.9.0"
}
}