forked from LibertyDSNP/parquetjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.65 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
{
"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": {
"@types/long": "^4.0.2",
"@types/node-int64": "^0.4.29",
"@types/thrift": "^0.10.11",
"browserify-zlib": "^0.2.0",
"bson": "4.6.3",
"cross-fetch": "^3.1.4",
"int53": "^0.2.4",
"long": "^4.0.0",
"snappyjs": "^0.6.1",
"thrift": "0.16.0",
"varint": "^6.0.0",
"wasm-brotli": "^2.0.2",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@types/bson": "^4.2.0",
"@types/chai": "^4.3.5",
"@types/json-schema": "^7.0.11",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.32",
"@types/sinon": "^10.0.15",
"@types/varint": "^6.0.1",
"assert": "^2.0.0",
"browserfs": "^1.4.3",
"buffer": "^6.0.3",
"chai": "4.3.6",
"core-js": "^3.22.5",
"esbuild": "^0.14.47",
"mocha": "^10.2.0",
"msw": "^1.2.1",
"object-stream": "^0.0.1",
"process": "^0.11.10",
"regenerator-runtime": "^0.13.11",
"sinon": "^15.1.0",
"sinon-chai": "^3.7.0",
"sinon-chai-in-order": "^0.1.0",
"stream-browserify": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"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.js",
"type": "tsc --noEmit",
"lint": "echo 'Linting, it is on the TODO list...'",
"test": "mocha -r ts-node/register 'test/{,!(browser)/**}/*.{js,ts}'",
"test:only": "mocha -r ts-node/register",
"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.js"
},
"browser": {
"assert": "assert",
"events": "events",
"fs": "browserfs",
"path": "path-browserify",
"stream": "readable-stream",
"thrift": "./node_modules/thrift/lib/nodejs/lib/thrift/browser.js",
"util": "util",
"zlib": "browserify-zlib"
},
"engines": {
"node": ">=16.15.1"
},
"files": [
"dist/**/*",
"parquet.thrift",
"*.md",
"docs/**/*"
]
}