forked from crossfilter/crossfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.62 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.62 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
{
"name": "crossfilter3",
"version": "3.0.2",
"description": "Fork of crossfilter2 adding Arrow streaming, WASM-accelerated filters, declarative dashboard runtimes, and Web Worker support.",
"license": "Apache-2.0",
"keywords": [
"analytics",
"arrow",
"crossfilter",
"crossfilter2",
"crossfilter3",
"dashboard",
"filtering",
"visualization",
"wasm",
"worker"
],
"author": {
"name": "Mike Bostock",
"url": "http://bost.ocks.org/mike"
},
"contributors": [
{
"name": "Jason Davies",
"url": "http://www.jasondavies.com/"
},
{
"name": "crossfilter2 contributors",
"url": "https://github.com/crossfilter/crossfilter"
},
{
"name": "Stefan Baxter / SmartData HQ",
"url": "https://github.com/smartdataHQ"
}
],
"homepage": "https://github.com/smartdataHQ/crossfilter",
"main": "./crossfilter.cjs",
"module": "main.js",
"types": "./index.d.ts",
"unpkg": "./crossfilter.min.js",
"repository": {
"type": "git",
"url": "https://github.com/smartdataHQ/crossfilter.git"
},
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./main.js",
"require": "./crossfilter.cjs",
"default": "./main.js"
},
"./main.js": "./main.js",
"./index.js": "./index.js",
"./crossfilter.cjs": "./crossfilter.cjs",
"./crossfilter.js": "./crossfilter.js",
"./crossfilter.min.js": "./crossfilter.min.js",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"dependencies": {
"@ranfdev/deepobj": "1.0.2"
},
"devDependencies": {
"apache-arrow": "^21.1.0",
"d3": "^3.5.17",
"echarts": "^6.0.0",
"eslint": "^8.12.0",
"package-json-versionify": "1.0.2",
"rollup": "^2.78.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "4",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-terser": "^7.0.2",
"semver": "^5.7.0",
"sinon": "^7.5.0",
"vitest": "^0.22.1"
},
"scripts": {
"benchmark": "node test/benchmark.js",
"benchmark:arrow": "node test/benchmark-arrow.mjs",
"build": "rollup -c rollup.config.js",
"clean": "rm -f crossfilter.cjs crossfilter.js crossfilter.min.js",
"test": "vitest run && eslint src/"
},
"files": [
"index.js",
"main.js",
"src/**",
"index.d.ts",
"crossfilter.cjs",
"crossfilter.js",
"crossfilter.min.js"
],
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"globals": {
"Uint8Array": true,
"Uint16Array": true,
"Uint32Array": true
},
"extends": "eslint:recommended"
}
}