forked from ZJONSSON/parquetjs
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
100 lines (100 loc) · 2.91 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@dsnp/parquetjs",
"description": "fully asynchronous, pure JavaScript implementation of the Parquet file format",
"main": "dist/parquet.js",
"types": "dist/parquet.d.ts",
"version": "0.0.0",
"homepage": "https://github.com/LibertyDSNP/parquetjs",
"license": "MIT",
"keywords": [
"dremel",
"parquet"
],
"repository": {
"type": "git",
"url": "git://github.com/LibertyDSNP/parquetjs.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.665.0",
"@types/node-int64": "^0.4.32",
"@types/thrift": "^0.10.17",
"@zenfs/core": "^1.0.2",
"brotli-wasm": "^3.0.1",
"bson": "6.8.0",
"int53": "^1.0.0",
"long": "^5.2.3",
"node-int64": "^0.4.0",
"snappyjs": "^0.7.0",
"thrift": "0.21.0",
"varint": "^6.0.0",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@smithy/util-stream": "^3.1.9",
"@types/chai": "^4.3.16",
"@types/eslint__js": "^8.42.3",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"@types/varint": "^6.0.3",
"assert": "^2.1.0",
"aws-sdk-client-mock": "^4.0.2",
"buffer": "^6.0.3",
"chai": "4.4.1",
"core-js": "^3.38.1",
"esbuild": "^0.24.0",
"esbuild-plugin-wat": "^0.2.7",
"eslint": "^9.12.0",
"eslint-plugin-mocha": "^10.5.0",
"events": "^3.3.0",
"mocha": "^10.7.3",
"msw": "^2.4.9",
"object-stream": "^0.0.1",
"prettier": "3.3.3",
"process": "^0.11.10",
"regenerator-runtime": "^0.14.1",
"sinon": "^17.0.2",
"sinon-chai": "^3.7.0",
"sinon-chai-in-order": "^0.1.0",
"stream-browserify": "^3.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"scripts": {
"build": "npm run build:node && npm run build:types",
"build:types": "tsc -p tsconfig.types.json && cp gen-nodejs/parquet_types.d.ts dist/gen-nodejs/parquet_types.d.ts",
"build:node": "tsc -b",
"build:browser": "node esbuild.mjs",
"type": "tsc --noEmit",
"lint": "eslint . && npx prettier . --check",
"lint:fix": "eslint --fix .",
"format": "npx prettier . --write",
"test": "mocha 'test/{,!(browser)/**}/*.{js,ts}'",
"test:only": "mocha",
"clean": "rm -Rf ./dist",
"prepublishOnly": "npm run clean && npm run build:node && npm run build:types && npm run build:browser",
"thrift": "thrift -out gen-nodejs --gen js:ts parquet.thrift && thrift -out gen-nodejs --gen js:node parquet.thrift",
"serve": "node esbuild-serve.mjs"
},
"browser": {
"assert": "assert",
"events": "events",
"fs": "@zenfs/core",
"path": "path-browserify",
"stream": "readable-stream",
"thrift": "./node_modules/thrift/lib/nodejs/lib/thrift/browser.js",
"util": "util"
},
"engines": {
"node": ">=18.18.2"
},
"files": [
"dist/**/*",
"parquet.thrift",
"*.md",
"docs/**/*"
]
}