forked from mapbox/supercluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "supercluster",
"version": "3.0.0",
"description": "A crazy fast geospatial point clustering library.",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js bench.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": "^14.4.0",
"eslint": "^4.5.0",
"eslint-config-mourner": "^2.0.1",
"mkdirp": "^0.5.1",
"tap": "^10.7.2",
"uglify-js": "^3.0.28"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"camelcase": 0,
"indent": [
"error",
4,
{
"flatTernaryExpressions": true
}
]
}
}
}