forked from uwdata/arquero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "arquero",
"version": "5.4.0",
"description": "Query processing and transformation of array-backed data tables.",
"keywords": [
"data",
"query",
"database",
"table",
"dataframe",
"transform",
"arrays"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "dist/arquero.node.js",
"module": "src/index-node.js",
"unpkg": "dist/arquero.min.js",
"jsdelivr": "dist/arquero.min.js",
"types": "dist/types/index.d.ts",
"browser": {
"./dist/arquero.node.js": "./dist/arquero.min.js",
"./src/index-node.js": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/uwdata/arquero.git"
},
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c rollup.config.mjs",
"postbuild": "tsc",
"preperf": "npm run build",
"perf": "TZ=America/Los_Angeles tape 'perf/**/*-perf.js'",
"lint": "eslint src test --ext .js",
"test": "TZ=America/Los_Angeles tape 'test/**/*-test.js' --require esm",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"dependencies": {
"acorn": "^8.11.2",
"apache-arrow": "^14.0.2",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.56.0",
"esm": "^3.2.25",
"rimraf": "^5.0.5",
"rollup": "^4.9.1",
"rollup-plugin-bundle-size": "^1.0.3",
"tape": "^5.7.2",
"typescript": "^5.3.3"
},
"esm": {
"force": true,
"mainFields": ["module", "main"]
}
}