-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.18 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": "ol-supercluster",
"version": "0.1.4",
"description": "OpenLayers's Cluster Source that uses SuperCluster to calculate clusters",
"source": "src/ol.supercluster.ts",
"main": "dist/ol-supercluster.js",
"module": "dist/ol-supercluster.modern.js",
"types": "dist/ol-supercluster.d.ts",
"minify": {
"regex": "_$"
},
"scripts": {
"test": "mocha",
"build": "microbundle --strict --globals none --format es,cjs",
"dev": "microbundle watch --strict --globals none --format es,cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjorgemota/ol-supercluster.git"
},
"keywords": [
"openlayer",
"supercluster",
"cluster"
],
"author": "Fernando Jorge Mota <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/fjorgemota/ol-supercluster/issues"
},
"homepage": "https://github.com/fjorgemota/ol-supercluster#readme",
"devDependencies": {
"@types/ol": "^5.x || ^6.x",
"@types/supercluster": "^5.0.1",
"microbundle": "^0.13.3",
"mocha": "^9.0.0"
},
"peerDependencies": {
"ol": "^5.x || ^6.x"
},
"dependencies": {
"supercluster": "^6.0.2"
}
}