forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
124 lines (124 loc) · 3.53 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "apache-arrow",
"description": "Apache Arrow columnar in-memory format",
"bin": {
"arrow2csv": "bin/arrow2csv.cjs"
},
"type": "module",
"scripts": {
"lerna": "lerna",
"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",
"clean:all": "yarn clean && yarn clean:testdata",
"clean:testdata": "gulp clean:testdata",
"create:testdata": "gulp create:testdata",
"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",
"prepublishOnly": "echo \"Error: do 'yarn release' instead of 'npm publish'\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apache/arrow.git"
},
"keywords": [
"apache",
"arrow"
],
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apache/arrow/issues"
},
"homepage": "https://github.com/apache/arrow/blob/main/js/README.md",
"files": [
"bin",
"src",
"gulp",
"jestconfigs",
"test",
"*.json",
"tsconfigs",
"README.md",
"gulpfile.js",
"npm-release.sh",
"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": "^20.13.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.1",
"flatbuffers": "^25.1.24",
"json-bignum": "^0.0.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@openpgp/web-stream-tools": "0.0.13",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/stream": "3.0.1",
"@swc/core": "1.6.6",
"@types/benchmark": "2.1.5",
"@types/glob": "8.1.0",
"@types/jest": "29.5.12",
"@types/multistream": "4.1.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.14.1",
"async-done": "2.0.0",
"benny": "3.7.1",
"cross-env": "7.0.3",
"del": "8.0.0",
"del-cli": "6.0.0",
"esbuild": "0.25.0",
"esbuild-plugin-alias": "0.2.1",
"eslint": "8.57.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-unicorn": "55.0.0",
"gulp": "4.0.2",
"glob": "10.4.1",
"google-closure-compiler": "20240317.0.0",
"gulp-esbuild": "0.13.0",
"gulp-json-transform": "0.5.0",
"gulp-rename": "2.0.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",
"memfs": "4.17.0",
"mkdirp": "3.0.1",
"multistream": "4.1.0",
"regenerator-runtime": "0.14.1",
"rollup": "4.24.3",
"rxjs": "7.8.1",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typedoc": "0.27.6",
"typescript": "5.4.5",
"vinyl-buffer": "1.0.1",
"vinyl-named": "1.1.0",
"vinyl-source-stream": "2.0.0",
"web-streams-polyfill": "3.2.1",
"webpack": "5.96.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-stream": "7.0.0",
"xml2js": "0.6.2"
},
"engines": {
"node": ">=12.0"
},
"version": "20.0.0-SNAPSHOT"
}