-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "gandiva-wasm",
"version": "0.0.0",
"description": "Gandiva powered by WebAssembly",
"license": "MIT",
"repository": "https://github.com/pablosichert/gandiva-wasm",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/benchmark": "^2.1.1",
"@types/emscripten": "^1.39.5",
"@types/jest": "^27.0.2",
"apache-arrow": "^5.0.0",
"arquero": "^4.8.7",
"benchmark": "^2.1.4",
"esbuild": "^0.13.1",
"jest": "^27.2.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-custom": "^1.1.9",
"lodash": "^4.17.21",
"make-dir": "^3.1.0",
"puppeteer": "^10.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"scripts": {
"build:debug": "node bundle.mjs debug",
"build:release": "node bundle.mjs release",
"test:node": "node --experimental-wasm-eh node_modules/.bin/jest",
"benchmark:browser": "npx karma start benchmarks/karma.conf.cjs",
"benchmark:node": "node --experimental-wasm-eh dist/gandiva.benchmark.node.js"
},
"files": [
"dist"
],
"module": "./dist/gandiva.module.js",
"browser": {
"./dist/gandiva.node.js": "./dist/gandiva.browser.js"
}
}