{ "name": "react-map-gl", "description": "A React wrapper for MapboxGL-js and overlay API.", "version": "3.0.0-alpha.8", "keywords": [ "mapbox", "mapbox-gl", "react", "react-mapbox-gl", "react mapbox" ], "repository": { "type": "git", "url": "https://github.com/uber/react-map-gl.git" }, "license": "MIT", "main": "dist/index.js", "module": "dist-es6/index.js", "files": [ "src", "dist", "postinstall.js" ], "scripts": { "start": "(cd examples/custom-interactions && (path-exists node_modules || npm i) && npm run start-local)", "build": "npm run clean && npm run build-es5 && npm run build-es6", "build-es5": "mkdir -p dist && babel src --out-dir dist --plugins=transform-es2015-modules-commonjs --source-maps inline", "build-es6": "mkdir -p dist-es6 && babel src --out-dir dist-es6 --source-maps inline", "clean": "rm -fr dist/* dist-es6/*", "lint": "eslint src example test", "test": "npm run lint && node test/node.js", "test-browser": "webpack-dev-server --env.browser --progress --hot --open", "publish-prod": "npm run build && npm run test && npm publish", "publish-beta": "npm run build && npm run test && npm publish --tag beta", "postinstall": "(flow-remove-types node_modules/mapbox-gl/js/**/*.js --out-dir . >/dev/null 2>&1) || (flow-remove-types ../mapbox-gl/js/**/*.js --out-dir . >/dev/null 2>&1) || true" }, "dependencies": { "bowser": "^1.2.0", "immutable": "*", "mapbox-gl": "0.32.1", "prop-types": "^15.5.7", "viewport-mercator-project": "^4.0.1" }, "devDependencies": { "babel-cli": "^6.22.2", "babel-core": "^6.22.1", "babel-eslint": "^6.0.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.24.0", "babel-preset-es2015": "^6.18", "eslint": "^3.0.0", "eslint-config-uber-es2015": "^3.0.0", "eslint-config-uber-jsx": "^3.0.0", "eslint-plugin-react": "~6.7.0", "flow-remove-types": "^1.1.2", "gl": "^4.0.3", "glob": "^7.1.1", "jsdom": "~9.9.1", "module-alias": "^2.0.0", "path-exists": "^3.0.0", "pre-commit": "^1.2.2", "react": "^15.4.0", "react-addons-test-utils": "^15.4.0", "react-dom": "^15.4.0", "reify": "^0.4.4", "remove-flow-types-loader": "^1.0.0", "sinon": "^1.17.7", "tap-browser-color": "^0.1.2", "tape": "^4.5.1", "tape-catch": "^1.0.4", "webpack": "^2.4.0", "webpack-dev-server": "^2.4.0", "webworkify-webpack-dropin": "^1.1.9" }, "peerDependencies": { "react": ">=15.4.x" }, "engines": { "node": ">= 4", "npm": ">= 3" } }