react-map-gl/package.json
Ib Green 49124f33ef * Added new custom-interactions example
* Add pressKeyToRotate prop
* Support pitch > 60
* Build system updates
2017-03-24 14:37:22 -07:00

77 lines
2.3 KiB
JSON

{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "3.0.0-alpha.2",
"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 && npm run start-local)",
"build": "npm run clean && npm run build-es6 && npm run build-es5",
"build-es6": "buble src -o dist-es6 --no modules --y dangerousForOf --objectAssign",
"build-es5": "webpack -d",
"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",
"viewport-mercator-project": "^4.0.0-alpha.3"
},
"devDependencies": {
"buble": "^0.15.1",
"buble-loader": "^0.4.0",
"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",
"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.2.0",
"webpack-dev-server": "^2.2.0",
"webworkify-webpack-dropin": "^1.1.9"
},
"peerDependencies": {
"react": "15.4.x"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}