-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
84 lines (84 loc) · 2.51 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@googlemaps/markerclusterer",
"version": "2.5.4",
"description": "Creates and manages per-zoom-level clusters for large amounts of markers.",
"keywords": [
"cluster",
"google",
"maps",
"marker"
],
"homepage": "https://github.com/googlemaps/js-markerclusterer",
"bugs": {
"url": "https://github.com/googlemaps/js-markerclusterer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-markerclusterer.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.umd.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"docs": "npm run build && typedoc src/index.ts && cp -r dist docs/dist && npm run examples && cp -r public docs/public",
"examples": "rollup -c rollup.config.examples.mjs",
"dev": "rollup -c rollup.config.examples.mjs --watch",
"format": "eslint . --fix",
"lint": "eslint .",
"prepack": "npm run build",
"test": "jest src/*",
"test:all": "jest"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"supercluster": "^8.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/runtime-corejs3": "^7.11.2",
"@googlemaps/jest-mocks": "^2.19.1",
"@googlemaps/js-api-loader": "^1.12.3",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-html": "^2.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/d3-interpolate": "^3.0.1",
"@types/google.maps": "^3.53.1",
"@types/jest": "^29.5.10",
"@types/supercluster": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"core-js": "^3.6.5",
"d3-interpolate": "^3.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"rollup": "^4.6.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-serve": "^3.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.27.6",
"typescript": "5.5"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"prettier": {
"trailingComma": "es5"
}
}