-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "@guilledk/arrowbatch-nodejs",
"version": "1.0.0-rc16",
"description": "Arrow Batch Storage protocol",
"main": "./build/src/index.js",
"bin": {
"ab-cli": "./build/tools/ab-cli.js"
},
"type": "module",
"exports": {
".": {
"import": "./build/src/index.js"
}
},
"scripts": {
"bootstrap": "yarn",
"build": "yarn run bootstrap && tsc && node build/tools/postInstall.js",
"test-all": "mocha build/src/tests/test*.spec.js",
"coverage": "c8 mocha build/src/tests/test*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilledk/arrowbatch-nodejs.git"
},
"author": "Guillermo Rodriguez",
"license": "MIT",
"dependencies": {
"apache-arrow": "^15.0.2",
"bufferutil": "^4.0.8",
"bytes": "^3.1.2",
"commander": "^12.1.0",
"fast-folder-size": "^2.2.0",
"moment": "^2.30.1",
"rlp": "^3.0.0",
"simple-zstd": "^1.4.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.38.0",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"winston-transport": "^4.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.13",
"c8": "^9.1.0",
"chai": "^5.1.0",
"mocha": "^10.4.0",
"typescript": "^5.0.4"
}
}