forked from tomchentw/react-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 4.54 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@beegru/react-google-maps",
"version": "9.4.11",
"description": "React.js Google Maps integration component",
"license": "MIT",
"author": {
"name": "Siddhant Vinchurkar",
"email": "[email protected]",
"url": "https://github.com/siddhantvinchurkar"
},
"repository": {
"type": "git",
"url": "https://github.com/Beegru/react-google-maps"
},
"bugs": {
"url": "https://github.com/Beegru/react-google-maps/issues"
},
"homepage": "https://beegru.com",
"main": "lib/index.js",
"files": [
"types/index.d.ts",
"lib/",
"src/",
"CHANGELOG.md"
],
"keywords": [
"React",
"Google",
"Map",
"react-component",
"recompose",
"hoc",
"addons/InfoBox",
"addons/MarkerClusterer",
"Circle",
"DirectionsRenderer",
"drawing/DrawingManager",
"FusionTablesLayer",
"GoogleMap",
"InfoWindow",
"KmlLayer",
"Marker",
"OverlayView",
"places/SearchBox",
"Polygon",
"Polyline",
"Rectangle",
"StreetViewPanorama",
"TrafficLayer",
"visualization/HeatmapLayer",
"withGoogleMap",
"withScriptjs"
],
"scripts": {
"precommit": "lint-staged",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"dtslint": "dtslint types",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' react-scripts test --env=jsdom --transformIgnorePatterns '/node_modules/(?!@beegru\/recompose)/'",
"test:once": "cross-env CI=true npm test",
"build:src": "babel-node src/tx/jscodeshift",
"precommit:src": "npm run build:src && npm run dtslint",
"commit:src": "git add -A && git commit -m 'chore(src/components): compile from src/macros with `babel`'",
"prebuild:lib": "rimraf lib",
"build:lib": "cross-env NODE_OPTIONS='--experimental-vm-modules' NODE_ENV=production babel src --out-dir lib --ignore macros,tx,spec.js",
"precommit:lib": "npm run build:lib",
"commit:lib": "git add -A && git commit -m 'chore(lib): compile from src with `babel`'",
"precommit:docs": "npm run styleguide:build",
"commit:docs": "git add -A && git commit -m 'docs: compile from src with `styleguidist`'",
"prerelease": "npm run commit:src && npm run commit:lib && npm run commit:docs",
"release": "standard-version -m 'chore(release): %s \n\n* CHANGELOG: https://github.com/tomchentw/react-google-maps/blob/v%s/CHANGELOG.md'"
},
"lint-staged": {
"*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"babel": {
"plugins": [
"lodash",
"transform-class-properties",
"transform-object-rest-spread",
"transform-runtime"
],
"presets": [
[
"env",
{
"targets": {
"ie": 9
}
}
],
"react"
]
},
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
},
"types": "types",
"dependencies": {
"@beegru/recompose": "^0.30.3",
"babel-runtime": "^6.26.0",
"can-use-dom": "^0.1.0",
"google-maps-infobox": "^2.0.0",
"invariant": "^2.2.4",
"lodash": "^4.17.21",
"marker-clusterer-plus": "^2.1.4",
"markerwithlabel": "^2.0.2",
"prop-types": "^15.8.1",
"scriptjs": "^2.5.9",
"shelljs": "^0.8.5",
"warning": "^4.0.3"
},
"peerDependencies": {
"@types/googlemaps": "^3.43.3",
"@types/markerclustererplus": "^2.1.29",
"@types/react": "^18.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/googlemaps": "^3.29.2",
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^18.3.1",
"babel-cli": "^6.26.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"dtslint": "github:Microsoft/dtslint#production",
"eslint": "^9.2.0",
"glob": "^10.3.15",
"husky": "^9.0.11",
"isomorphic-fetch": "^3.0.0",
"jscodeshift": "^0.15.2",
"lint-staged": "^15.2.2",
"make-fetch-happen": "^13.0.1",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-scripts": "^5.0.1",
"react-styleguidist": "^13.1.2",
"rimraf": "^5.0.7",
"standard-version": "^9.5.0",
"to-markdown": "^3.1.0"
}
}