-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
50
51
52
{
"name": "maptalks.tileclusterlayer",
"version": "0.5.0",
"description": "marker cluster by tile",
"module": "dist/maptalks.tileclusterlayer.mjs",
"main": "dist/maptalks.tileclusterlayer.js",
"jsnext:main": "dist/maptalks.tileclusterlayer.es.js",
"scripts": {
"lint": "eslint ./*.js",
"dev": "npm run lint && cross-env NODE_ENV=dev rollup -c -w",
"build": "npm run lint && cross-env NODE_ENV=dev rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deyihu/maptalks.tileclusterlayer.git"
},
"keywords": [
"tile",
"cluster",
"markers"
],
"author": "deyihu",
"license": "MIT",
"bugs": {
"url": "https://github.com/deyihu/maptalks.tileclusterlayer/issues"
},
"homepage": "https://github.com/deyihu/maptalks.tileclusterlayer#readme",
"files": [
"dist/"
],
"dependencies": {
"@mapbox/sphericalmercator": "^1.2.0",
"@mapbox/tile-cover": "^3.0.2",
"kdbush": "^3.0.0",
"tile-cover-deyihu": "^4.0.0"
},
"devDependencies": {
"cross-env": "^5.1.4",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rollup": "^0.68.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^7.0.2"
}
}