Files
react-native-mapbox-gl/package.json
T
Bob Fanger 0a9d904358 import PropTypes from ‘prop-types’ and using ViewPropTypes instead of View.propTypes
Fixed errors:
`View.propTypes has been deprecated and will be removed in a future version of ReactNative. Use ViewPropTypes instead.`

`Warning: PropTypes has been moved to a separate package. Accessing React.PropTypes is no longer supported and will be removed completely in React 16. Use the prop-types package on npm instead.`
2017-07-26 00:35:19 +02:00

46 lines
1.1 KiB
JSON

{
"name": "react-native-mapbox-gl",
"description": "A Mapbox GL react native module for creating custom maps",
"version": "5.2.0",
"author": "Bobby Sudekum",
"keywords": [
"gl",
"ios",
"android",
"mapbox",
"react-component",
"react-native"
],
"licenses": [
{
"type": "BSD",
"url": "https://github.com/mapbox/react-native-mapbox-gl/blob/master/LICENSE.md"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mapbox/react-native-mapbox-gl"
},
"scripts": {
"preinstall": "node ./scripts/download-mapbox-gl-native-ios-if-on-mac.js 3.3.1",
"test": "npm run lint",
"lint": "eslint --no-eslintrc -c .eslintrc index.js example.js"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.1.1",
"eslint-config-strict-react": "^8.0.1",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-react-native": "1.1.0"
},
"dependencies": {
"babel-eslint": "^6.1.2",
"lodash": "^4.13.1"
},
"peerDependencies": {
"react": ">=15.4.0",
"react-native": ">=0.44.3",
"prop-types": ">=15.5.8"
}
}