forked from crossfilter/crossfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.97 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
{
"name": "crossfilter2",
"version": "1.5.4",
"description": "Fast multidimensional filtering for coordinated views.",
"license": "Apache-2.0",
"keywords": [
"analytics",
"visualization",
"crossfilter"
],
"author": {
"name": "Mike Bostock",
"url": "http://bost.ocks.org/mike"
},
"contributors": [
{
"name": "Jason Davies",
"url": "http://www.jasondavies.com/"
}
],
"maintainers": [
{
"name": "Gordon Woodhull",
"url": "https://github.com/gordonwoodhull"
},
{
"name": "Tanner Linsley",
"url": "https://github.com/tannerlinsley"
},
{
"name": "Ethan Jewett",
"url": "https://github.com/esjewett"
}
],
"homepage": "https://crossfilter.github.io/crossfilter/",
"main": "./crossfilter.js",
"module": "main.js",
"types": "./index.d.ts",
"unpkg": "./crossfilter.min.js",
"repository": {
"type": "git",
"url": "http://github.com/crossfilter/crossfilter.git"
},
"dependencies": {
"@ranfdev/deepobj": "1.0.2"
},
"devDependencies": {
"d3": "^3.5.17",
"eslint": "^6.5.1",
"esm": "^3.2.25",
"package-json-versionify": "1.0.2",
"rollup": "1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "4",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-terser": "5",
"semver": "^5.7.0",
"sinon": "^7.5.0",
"vows": "0.8.2"
},
"scripts": {
"benchmark": "node -r esm test/benchmark.js",
"build": "rollup -c rollup.config.js",
"clean": "rm -f crossfilter.js crossfilter.min.js",
"test": "node -r esm ./node_modules/.bin/vows --verbose && eslint src/"
},
"files": [
"index.js",
"main.js",
"src/**",
"index.d.ts",
"crossfilter.js",
"crossfilter.min.js"
],
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"globals": {
"Uint8Array": true,
"Uint16Array": true,
"Uint32Array": true
},
"extends": "eslint:recommended"
}
}