forked from hkdeven/google-map-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.91 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
{
"name": "google-map-react",
"version": "0.19.0",
"description": "isomorphic google map react component, allows render react components on the google map",
"main": "lib/index",
"scripts": {
"build:lib": "babel ./src -d lib",
"build:umd": "webpack src/index_umd.js dist/GoogleMapReact.js --config webpack.config.dev.js",
"build:umd:min": "webpack src/index_umd.js dist/GoogleMapReact.min.js --config webpack.config.prod.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib dist",
"prepublish": "npm run clean && npm run build",
"lint": "eslint src develop",
"test": "NODE_ENV=eee mocha --compilers js:babel-register --recursive --require babel-polyfill",
"test:watch": "NODE_ENV=eee mocha --compilers js:babel-register --recursive --require babel-polyfill --watch",
"start": "kotatsu serve --port 4000 --config ./develop/config/index.babel.js --presets es2015,stage-0,react,react-hmre ./develop/Main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/istarkov/google-map-react.git"
},
"keywords": [
"react",
"reactjs",
"google",
"map",
"maps",
"isomorphic",
"render",
"component",
"javascript",
"react-component"
],
"author": "istarkov https://github.com/istarkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/istarkov/google-map-react/issues"
},
"homepage": "https://github.com/istarkov/google-map-react#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"eventemitter3": "^1.1.0",
"fbjs": "^0.8.3",
"point-geometry": "0.0.0",
"scriptjs": "^2.5.7"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.5",
"babel-plugin-webpack-loaders": "^0.5.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.11.1",
"file-loader": "^0.8.5",
"jsdom": "^6.5.1",
"kotatsu": "^0.14.0",
"lodash": "^4.13.1",
"mocha": "^2.3.3",
"node-sass": "^3.7.0",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.9.1",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-motion": "^0.4.4",
"react-router": "^2.4.1",
"recompose": "^0.19.0",
"reselect": "^2.5.1",
"rimraf": "^2.4.3",
"rxjs": "^5.0.0-beta.8",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.2"
}
}