-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "arquero",
"type": "module",
"version": "7.2.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": "./src/index.js",
"module": "./src/index.js",
"unpkg": "./dist/arquero.min.js",
"jsdelivr": "./dist/arquero.min.js",
"types": "./dist/types/index.d.ts",
"browser": {
"./src/index.js": "./src/index-browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/uwdata/arquero.git"
},
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c rollup.config.js",
"postbuild": "tsc",
"perf": "TZ=America/Los_Angeles tape 'perf/**/*-perf.js'",
"lint": "eslint src test",
"test": "TZ=America/Los_Angeles mocha 'test/**/*-test.js' --timeout 5000",
"posttest": "npm run lint && tsc --project jsconfig.json",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"@uwdata/flechette": "^1.1.1",
"acorn": "^8.14.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"apache-arrow": "18.0.0",
"eslint": "^9.14.0",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"rollup-plugin-bundle-size": "^1.0.3",
"tape": "^5.9.0",
"typescript": "^5.6.3"
}
}