forked from tomchentw/react-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.41 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
{
"name": "react-google-maps",
"version": "6.0.1",
"description": "React.js Google Maps integration component",
"main": "lib/index.js",
"files": [
"lib/",
"src/lib",
"CHANGELOG.md"
],
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pretest": "npm run lint",
"test:once": "cross-env CI=true npm test",
"build:app": "react-scripts build",
"clean": "rimraf lib",
"lint": "cross-env NODE_ENV=test eslint .",
"prebuild:lib": "npm run lint && npm run clean",
"build:lib": "cross-env NODE_ENV=production babel src/lib --out-dir lib",
"precommit:lib": "npm run build:lib",
"commit:lib": "git add -A && git commit -m 'chore(lib): compile from src/lib using babel'",
"precommit:app": "npm run build:app",
"commit:app": "git add -A && git commit -m 'docs: compile from src/app with react-scripts'",
"prerelease": "npm run commit:lib && npm run commit:app",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/react-google-maps"
},
"keywords": [
"React.js",
"React",
"react-component",
"google",
"map",
"maps",
"place",
"places",
"googlemap",
"googlemaps",
"google-map",
"google-maps",
"google map",
"google maps",
"HeatmapLayer",
"Map",
"Marker",
"Polyline",
"Polygon",
"Circle",
"Directions",
"InfoWindow",
"SearchBox"
],
"author": {
"name": "tomchentw",
"email": "developer@tomchentw.com",
"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.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "6.1.2",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-flow-comments": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"codeclimate-test-reporter": "^0.3.3",
"cross-env": "^3.0.0",
"eslint": "3.5.0",
"eslint-config-react-app": "0.2.1",
"eslint-plugin-flowtype": "2.18.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"history": "^2.1.2",
"isomorphic-fetch": "^2.2.1",
"prismjs": "^1.5.1",
"raf": "^3.3.0",
"raw-loader": "^0.5.1",
"react": "^15.0.0",
"react-bootstrap": "^0.30.3",
"react-dom": "^15.0.0",
"react-github-fork-ribbon": "^0.4.4",
"react-helmet": "^3.1.0",
"react-icons": "^2.2.1",
"react-prism": "^4.0.0",
"react-router": "^2.8.1",
"react-router-bootstrap": "^0.23.1",
"react-scripts": "0.6.1",
"react-toastr": "^2.8.1",
"rimraf": "^2.5.4",
"standard-version": "^2.4.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",
"react-display-name": "^0.2.0",
"react-prop-types-element-of-type": "^2.2.0",
"scriptjs": "^2.5.8",
"warning": "^3.0.0"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}