forked from mapbox/supercluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "supercluster",
"version": "2.2.0",
"description": "A crazy fast geospatial point clustering library.",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js test/test.js",
"test": "tap test",
"cov": "tap test --cov",
"build-dev": "mkdirp dist && browserify -d index.js -s supercluster > dist/supercluster.js",
"build-min": "mkdirp dist && browserify index.js -s supercluster | uglifyjs -c warnings=false -m > dist/supercluster.min.js",
"prepublish": "npm run build-dev && npm run build-min"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/mapbox/supercluster.git"
},
"keywords": [
"clustering",
"geospatial",
"markers"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"dependencies": {
"kdbush": "^1.0.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^3.12.2",
"eslint-config-mourner": "^2.0.1",
"mkdirp": "^0.5.1",
"tap": "^8.0.1",
"uglifyjs": "^2.4.10"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"camelcase": 0
}
}
}