forked from tomchentw/react-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.48 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
{
"__template__gist__": "https://gist.github.com/tomchentw/368a93bb748ad9d576f1#file-package-json",
"name": "react-google-maps",
"version": "4.7.1",
"description": "React.js Google Maps integration component",
"main": "lib/index.js",
"files": [
"lib/",
"src/",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run lint && npm run clean",
"build:watch": "npm run build -- --watch",
"build": "babel src --out-dir lib",
"lint": "eslint .",
"pretest:cov": "npm run lint",
"pretest": "npm run lint",
"test:cov": "babel-node ./node_modules/.bin/isparta cover --report lcov _mocha -- $npm_package_config_mocha",
"test:watch": "npm test -- --watch",
"test": "mocha $npm_package_config_mocha"
},
"config": {
"mocha": "--compilers js:babel/register ./src/__tests__/*.spec.js ./src/**/__tests__/*.spec.js --require ./src/__tests__/__setup__.js"
},
"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",
"GoogleMapsMixin",
"Map",
"Marker",
"Polyline",
"Polygon",
"Circle",
"Directions",
"InfoWindow",
"SearchBox"
],
"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": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"codeclimate-test-reporter": "^0.1.1",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.1",
"isparta": "^3.1.0",
"istanbul": "^0.3.22",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.4.3",
"tomchentw-npm-dev": "^3.1.0"
},
"dependencies": {
"can-use-dom": "^0.1.0",
"google-maps-infobox": "^1.1.13",
"invariant": "^2.1.1",
"lodash.isequal": "^3.0.4",
"marker-clusterer-plus": "^2.1.2",
"react-prop-types-element-of-type": "^1.0.2",
"scriptjs": "^2.5.8",
"warning": "^2.1.0"
},
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}