forked from mapbox/supercluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
48
49
50
51
52
53
54
{
"name": "supercluster",
"version": "7.1.3",
"description": "A very fast geospatial point clustering library.",
"main": "dist/supercluster.js",
"module": "index.js",
"jsdelivr": "dist/supercluster.min.js",
"unpkg": "dist/supercluster.min.js",
"scripts": {
"pretest": "eslint index.js bench.js test/test.js demo/index.js demo/worker.js",
"test": "tape -r esm test/test.js",
"cov": "c8 npm run test",
"bench": "node --expose-gc -r esm 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": "^3.0.0"
},
"devDependencies": {
"c8": "^7.7.0",
"eslint": "^7.23.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.2.25",
"mkdirp": "^1.0.4",
"rollup": "^2.44.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-node-resolve": "^11.2.1",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.2.2"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"camelcase": 0
}
}
}