-
Notifications
You must be signed in to change notification settings - Fork 300
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "supercluster",
"version": "8.0.1",
"description": "A very fast geospatial point clustering library.",
"main": "dist/supercluster.js",
"type": "module",
"exports": "./index.js",
"module": "index.js",
"jsdelivr": "dist/supercluster.min.js",
"unpkg": "dist/supercluster.min.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/supercluster.js",
"dist/supercluster.min.js"
],
"repository": {
"type": "git",
"url": "git://github.com/mapbox/supercluster.git"
},
"keywords": [
"clustering",
"geospatial",
"markers"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"dependencies": {
"kdbush": "^4.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.5.0",
"eslint-config-mourner": "^4.0.0",
"mkdirp": "^3.0.1",
"rollup": "^4.18.0"
}
}