-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.21 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.21 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "apache-arrow",
"description": "Apache Arrow columnar in-memory format",
"bin": {
"arrow2csv": "bin/arrow2csv.cjs"
},
"type": "module",
"scripts": {
"test": "cross-env NODE_NO_WARNINGS=1 gulp test",
"build": "cross-env NODE_NO_WARNINGS=1 gulp build",
"clean": "cross-env NODE_NO_WARNINGS=1 gulp clean",
"debug": "cross-env NODE_NO_WARNINGS=1 gulp debug",
"perf": "node --no-warnings --loader ts-node/esm/transpile-only perf/index.ts",
"test:integration": "bin/integration.ts --mode validate",
"release": "./npm-release.sh",
"test:coverage": "gulp test -t src --coverage",
"test:bundle": "gulp bundle",
"doc": "del-cli ./doc && typedoc",
"lint": "eslint src test --fix",
"lint:ci": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apache/arrow-js.git"
},
"keywords": [
"apache",
"arrow"
],
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apache/arrow-js/issues"
},
"homepage": "https://arrow.apache.org/js/",
"files": [
"bin",
"src",
"gulp",
"jestconfigs",
"test",
"*.json",
"tsconfigs",
"README.md",
"gulpfile.js",
"jest.config.js"
],
"dependencies": {
"@swc/helpers": "^0.5.11",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/node": "^25.2.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.1",
"flatbuffers": "^25.1.24",
"json-with-bigint": "^3.5.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@openpgp/web-stream-tools": "0.0.13",
"@rollup/plugin-alias": "6.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/stream": "3.0.1",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.10",
"@types/benchmark": "2.1.5",
"@types/glob": "8.1.0",
"@types/jest": "29.5.14",
"@types/lz4js": "0.2.2",
"@types/multistream": "4.1.3",
"async-done": "2.0.0",
"benny": "3.7.1",
"cross-env": "10.0.0",
"del": "8.0.1",
"del-cli": "7.0.0",
"esbuild": "0.27.3",
"esbuild-plugin-alias": "0.2.1",
"eslint": "9.39.2",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-unicorn": "59.0.1",
"glob": "13.0.0",
"google-closure-compiler": "20260128.0.0",
"gulp": "5.0.1",
"gulp-esbuild": "0.14.1",
"gulp-json-transform": "0.5.0",
"gulp-rename": "2.1.0",
"gulp-replace": "1.1.4",
"gulp-sourcemaps": "3.0.0",
"gulp-terser": "2.1.0",
"gulp-typescript": "5.0.1",
"gulp-vinyl-size": "1.1.4",
"ix": "7.0.0",
"jest": "29.7.0",
"jest-silent-reporter": "0.6.0",
"lz4js": "0.2.0",
"memfs": "4.56.10",
"mkdirp": "3.0.1",
"multistream": "4.1.0",
"regenerator-runtime": "0.14.1",
"rollup": "4.59.0",
"rxjs": "7.8.2",
"ts-jest": "29.1.4",
"typedoc": "0.28.17",
"typescript": "5.4.5",
"typescript-eslint": "8.54.0",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0",
"web-streams-polyfill": "3.2.1",
"webpack": "5.104.1",
"webpack-bundle-analyzer": "5.2.0",
"webpack-stream": "7.0.0",
"zstd-codec": "0.1.5"
},
"engines": {
"node": ">=20.0"
},
"version": "21.1.0"
}