forked from pieterv/react-googlemaps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "react-googlemaps",
"version": "0.4.0",
"description": "A declarative React interface to Google Maps",
"keywords": [
"react",
"react-component",
"google maps",
"googlemaps",
"maps"
],
"main": "index.js",
"scripts": {
"test": "jest",
"build-examples": "webpack --devtool inline-source-map",
"watch-examples": "webpack --devtool inline-source-map --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/pieterv/react-googlemaps.git"
},
"homepage": "https://github.com/pieterv/react-googlemaps",
"bugs": "https://github.com/pieterv/react-googlemaps/issues",
"author": "Pieter Vanderwerff",
"license": "MIT",
"devDependencies": {
"jest-cli": "^0.1.18",
"jsx-loader": "^0.12.2",
"react-tools": "^0.12.2",
"webpack": "^1.3.7",
"react": ">=0.12.1"
},
"peerDependencies": {
"react": ">=0.12.1",
"reactify": ">=0.17.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"browserify": {
"transform": ["reactify"]
}
}