forked from tomchentw/react-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.71 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
{
"name": "react-google-maps",
"version": "8.5.0",
"description": "React.js Google Maps integration component",
"main": "lib/index.js",
"files": ["lib/", "src/", "CHANGELOG.md"],
"lint-staged": {
"*.{js,jsx,json,css}": ["prettier --write", "git add"]
},
"scripts": {
"precommit": "lint-staged",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "react-scripts test --env=jsdom",
"pretest": "npm run lint",
"test:once": "cross-env CI=true npm test",
"clean": "rimraf lib",
"lint": "cross-env NODE_ENV=test eslint .",
"build:src": "babel-node src/tx/jscodeshift",
"precommit:src": "npm run build:src",
"commit:src":
"git add -A && git commit -m 'chore(src/components): compile from src/macros with `babel`'",
"prebuild:lib": "npm run lint && npm run clean",
"build:lib":
"cross-env 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"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/react-google-maps"
},
"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"
],
"author": {
"name": "tomchentw",
"email": "[email protected]",
"url": "https://github.com/tomchentw"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomchentw/react-google-maps/issues"
},
"homepage": "https://tomchentw.github.io/react-google-maps/",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cheerio": "^1.0.0-rc.2",
"codeclimate-test-reporter": "^0.5.0",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-prettier": "^2.2.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"isomorphic-fetch": "^2.2.1",
"jscodeshift": "^0.3.32",
"lint-staged": "^4.1.3",
"make-fetch-happen": "^2.5.0",
"mkdirp": "^0.5.1",
"prettier": "^1.6.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-scripts": "^1.0.13",
"react-styleguidist": "^6.0.24",
"rimraf": "^2.6.2",
"standard-version": "^4.2.0",
"to-markdown": "^3.1.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"can-use-dom": "^0.1.0",
"google-maps-infobox": "^1.1.13",
"invariant": "^2.2.1",
"lodash": "^4.16.2",
"marker-clusterer-plus": "^2.1.4",
"prop-types": "^15.5.8",
"recompose": "^0.25.0",
"scriptjs": "^2.5.8",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}