forked from mapbox/supercluster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "mutable-supercluster",
"version": "1.1.0",
"description": "A library for fast and mutable geospatial point clustering.",
"main": "dist/mutable-supercluster.js",
"type": "module",
"exports": "./index.js",
"module": "index.js",
"sideEffects": false,
"scripts": {
"pretest": "eslint index.js bench.js test/test.js demo/index.js demo/worker.js",
"test": "node --test",
"cov": "node --test --experimental-test-coverage",
"bench": "node --expose-gc bench.js",
"build": "mkdirp dist && rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"index.js",
"dist/mutable-supercluster.js",
"dist/mutable-supercluster.min.js"
],
"repository": {
"type": "git",
"url": "git://github.com/SegmentationFaults0/mutable_supercluster.git"
},
"keywords": [
"clustering",
"geospatial",
"markers"
],
"author": "Sander Verwimp",
"license": "ISC",
"dependencies": {
"lodash-es": "^4.17.21",
"rbush": "^4.0.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"mkdirp": "^3.0.1",
"prettier": "3.6.2",
"rollup": "^4.18.0"
}
}