-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "@mhyfritz/bin-data",
"version": "0.0.6",
"description": "Bin data into given number of chunks and pick a representative value for each bin.",
"main": "dist/@mhyfritz/bin-data.umd.js",
"module": "dist/@mhyfritz/bin-data.esm.js",
"unpkg": "dist/@mhyfritz/bin-data.umd.min.js",
"jsdelivr": "dist/@mhyfritz/bin-data.umd.min.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"release": "npx np",
"test": "jest",
"version": "npm run build"
},
"keywords": [
"array",
"binning",
"bucketing",
"chunks",
"compression",
"iterable",
"quantization"
],
"author": {
"name": "Markus Hsi-Yang Fritz",
"email": "markus.h.y.fritz@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"camelcase": "^5.3.1",
"jest": "^24.8.0",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3"
},
"dependencies": {
"d3-array": "^2.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhyfritz/bin-data.git"
},
"bugs": {
"url": "https://github.com/mhyfritz/bin-data/issues"
},
"homepage": "https://github.com/mhyfritz/bin-data#readme"
}