forked from akursat/react-leaflet-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "@cobliteam/react-leaflet-cluster",
"version": "2.1.0",
"description": "React-leaflet-cluster is a plugin for react-leaflet. A wrapper component of Leaflet.markercluster.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "tsc && npm run minify && npm run copy:assets",
"minify": "uglifyjs --compress --mangle --output lib/index.min.js -- lib/index.js",
"format": "prettier --write \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"copy:assets": "cpx 'src/assets/**' 'lib/assets'"
},
"dependencies": {
"leaflet.markercluster": "^1.5.3"
},
"peerDependencies": {
"leaflet": "^1.9.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-leaflet": "^4.0.0"
},
"devDependencies": {
"@types/leaflet": "^1.9.1",
"@types/leaflet.markercluster": "^1.5.0",
"@types/node": "^14.18.21",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cpx": "^1.5.0",
"eslint": "^7.32.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"leaflet": "^1.8.0",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-leaflet": "^4.0.0",
"ts-loader": "^8.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3",
"uglify-js": "^3.16.0"
},
"publishConfig": {
"@YOUR-USERNAME:registry": "https://npm.pkg.github.com"
},
"author": "akursat",
"homepage": "https://akursat.gitbook.io/marker-cluster/",
"license": "SEE LICENSE IN <LICENSE>",
"repository": "https://github.com/akursat/react-leaflet-cluster",
"keywords": [
"react",
"leaflet",
"marker-cluster",
"cluster",
"map",
"react-leaflet-v4"
]
}