UNPKG

3.65 kBJSONView Raw
1{
2 "name": "react-google-maps",
3 "version": "8.0.0",
4 "description": "React.js Google Maps integration component",
5 "main": "lib/index.js",
6 "files": ["lib/", "src/lib", "CHANGELOG.md"],
7 "lint-staged": {
8 "*.{js,jsx,json,css}": ["prettier --write", "git add"]
9 },
10 "scripts": {
11 "precommit": "lint-staged",
12 "styleguide": "styleguidist server",
13 "styleguide:build": "styleguidist build",
14 "test": "react-scripts test --env=jsdom",
15 "pretest": "npm run lint",
16 "test:once": "cross-env CI=true npm test",
17 "clean": "rimraf lib",
18 "lint": "cross-env NODE_ENV=test eslint .",
19 "build:src": "babel-node src/tx/jscodeshift",
20 "precommit:src": "npm run build:src",
21 "commit:src":
22 "git add -A && git commit -m 'chore(src/components): compile from src/macros with `babel`'",
23 "prebuild:lib": "npm run lint && npm run clean",
24 "build:lib":
25 "cross-env NODE_ENV=production babel src --out-dir lib --ignore macros,tx,spec.js",
26 "precommit:lib": "npm run build:lib",
27 "commit:lib":
28 "git add -A && git commit -m 'chore(lib): compile from src with `babel`'",
29 "precommit:docs": "npm run styleguide:build",
30 "commit:docs":
31 "git add -A && git commit -m 'docs: compile from src with `styleguidist`'",
32 "prerelease":
33 "npm run commit:src && npm run commit:lib && npm run commit:docs",
34 "release": "standard-version"
35 },
36 "repository": {
37 "type": "git",
38 "url": "https://github.com/tomchentw/react-google-maps"
39 },
40 "keywords": [
41 "React.js",
42 "React",
43 "react-component",
44 "google",
45 "map",
46 "maps",
47 "place",
48 "places",
49 "googlemap",
50 "googlemaps",
51 "google-map",
52 "google-maps",
53 "google map",
54 "google maps",
55 "HeatmapLayer",
56 "Map",
57 "Marker",
58 "Polyline",
59 "Polygon",
60 "Circle",
61 "Directions",
62 "InfoWindow",
63 "SearchBox",
64 "TrafficLayer"
65 ],
66 "author": {
67 "name": "tomchentw",
68 "email": "developer@tomchentw.com",
69 "url": "https://github.com/tomchentw"
70 },
71 "license": "MIT",
72 "bugs": {
73 "url": "https://github.com/tomchentw/react-google-maps/issues"
74 },
75 "homepage": "https://tomchentw.github.io/react-google-maps/",
76 "devDependencies": {
77 "babel-cli": "^6.26.0",
78 "babel-core": "^6.26.0",
79 "babel-eslint": "^8.0.0",
80 "babel-plugin-lodash": "^3.2.11",
81 "babel-plugin-transform-flow-comments": "^6.22.0",
82 "babel-plugin-transform-runtime": "^6.23.0",
83 "babel-plugin-typecheck": "^3.9.0",
84 "babel-preset-env": "^1.6.0",
85 "babel-preset-react": "^6.24.1",
86 "babel-preset-stage-0": "^6.24.1",
87 "cheerio": "^1.0.0-rc.2",
88 "codeclimate-test-reporter": "^0.5.0",
89 "cross-env": "^5.0.5",
90 "eslint": "^4.6.1",
91 "eslint-config-prettier": "^2.4.0",
92 "eslint-plugin-prettier": "^2.2.0",
93 "glob": "^7.1.2",
94 "husky": "^0.14.3",
95 "isomorphic-fetch": "^2.2.1",
96 "jscodeshift": "^0.3.32",
97 "lint-staged": "^4.1.3",
98 "make-fetch-happen": "^2.5.0",
99 "mkdirp": "^0.5.1",
100 "prettier": "^1.6.1",
101 "react": "^15.6.1",
102 "react-dom": "^15.6.1",
103 "react-icons": "^2.2.5",
104 "react-scripts": "^1.0.13",
105 "react-styleguidist": "^6.0.24",
106 "rimraf": "^2.6.2",
107 "standard-version": "^4.2.0"
108 },
109 "dependencies": {
110 "babel-runtime": "^6.11.6",
111 "can-use-dom": "^0.1.0",
112 "google-maps-infobox": "^1.1.13",
113 "invariant": "^2.2.1",
114 "lodash": "^4.16.2",
115 "marker-clusterer-plus": "^2.1.4",
116 "prop-types": "^15.5.8",
117 "recompose": "^0.25.0",
118 "scriptjs": "^2.5.8",
119 "warning": "^3.0.0"
120 },
121 "peerDependencies": {
122 "react": "^15.5.4",
123 "react-dom": "^15.5.4"
124 }
125}