forked from tomchentw/react-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.45 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
{
"name": "react-google-maps",
"version": "7.2.0",
"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 --ignore spec.js",
"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",
"TrafficLayer"
],
"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.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.2.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.4.1",
"cross-env": "4.0.0",
"eslint": "3.19.0",
"eslint-config-react-app": "0.6.2",
"eslint-plugin-flowtype": "2.32.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"isomorphic-fetch": "2.2.1",
"prismjs": "1.5.1",
"raf": "3.3.0",
"raw-loader": "0.5.1",
"react": "15.5.4",
"react-bootstrap": "0.30.3",
"react-dom": "15.5.4",
"react-github-fork-ribbon": "0.5.0",
"react-helmet": "5.0.3",
"react-icons": "2.2.1",
"react-prism": "4.0.0",
"react-router": "3.0.5",
"react-router-bootstrap": "0.23.2",
"react-scripts": "0.9.5",
"react-toastr": "2.8.1",
"rimraf": "2.5.4",
"standard-version": "4.0.0"
},
"dependencies": {
"babel-runtime": "6.11.6",
"can-use-dom": "0.1.0",
"create-react-class": "15.5.3",
"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",
"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.5.4",
"react-dom": "15.5.4"
}
}