-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "binguru",
"version": "1.0.0-alpha.18.0",
"description": "BinGuru is a Javascript package with an API to several established data binning / data classification methods, often used for visualizing data on choropleth maps. It also includes an implementation of a new, consensus binning method, 'Resiliency'.",
"main": "dist/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc && rollup -c rollup.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arpitnarechania/binguru.git"
},
"dependencies": {
"nerdamer": "^1.1.13",
"simple-statistics": "^7.8.3"
},
"keywords": [
"data",
"binning;",
"data",
"classification",
"choropleth",
"maps",
"GIS",
"cartography",
"visualization"
],
"author": "Arpit Narechania, Alex Endert, Clio Andris",
"license": "MIT",
"bugs": {
"url": "https://github.com/arpitnarechania/binguru/issues"
},
"homepage": "https://github.com/arpitnarechania/binguru#readme",
"devDependencies": {
"rimraf": "^5.0.1",
"rollup": "^3.25.3",
"typescript": "^5.1.5"
},
"engines": {
"npm": ">=7.24.0",
"node": ">=16.10.0"
}
}