forked from google-map-react/google-map-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.51 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
{
"name": "google-map-react",
"version": "1.1.7",
"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": "yarn run build:lib && yarn run build:umd && yarn run build:umd:min",
"clean": "rimraf lib dist",
"prepublish": "yarn run clean && yarn run build",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.js' 'src/**/*.js'",
"format:dev": "prettier --trailing-comma es5 --single-quote --write 'develop/**/*.js' 'develop/**/*.js'",
"lint": "eslint src",
"lint:dev": "eslint 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",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google-map-react/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/google-map-react/google-map-react/issues"
},
"homepage": "https://github.com/google-map-react/google-map-react#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@mapbox/point-geometry": "^0.1.0",
"eventemitter3": "^1.1.0",
"prop-types": "^15.5.6",
"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-env": "^1.6.1",
"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": "^3.17.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-prettier": "^1.5.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.11.1",
"file-loader": "^0.8.5",
"husky": "^0.13.3",
"jsdom": "^6.5.1",
"kotatsu": "^0.14.0",
"lint-staged": "^3.4.0",
"mocha": "^2.3.3",
"node-sass": "^3.7.0",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.9.1",
"prettier": "^0.22.0",
"react": "^16.0.0",
"react-dom": "^16.4.1",
"react-motion": "^0.4.4",
"react-router": "^3.2.0",
"recompose": "^0.26.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"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
}
}