react-map-gl/package.json
2018-04-18 13:48:34 -07:00

93 lines
2.9 KiB
JSON

{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "3.3.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/es5/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/es6/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"start": "(cd examples/main && (path-exists node_modules || npm i) && npm run start-local)",
"clean": "rm -fr dist dist-es6 && mkdir -p dist/es5 dist/esm dist/es6",
"build": "./scripts/build.sh && ./scripts/collect-metrics.sh",
"publish-prod": "npm run build && npm run test && npm publish",
"publish-beta": "npm run build && npm run test && npm publish --tag beta",
"lint": "eslint src test && npm run lint-yarn",
"lint-yarn": "!(grep -q unpm.u yarn.lock) || (echo 'Please rebuild yarn file using public npmrc' && false)",
"test": "npm run lint && node test/start.js test",
"test-dist": "node test/start.js test-dist",
"test-browser": "webpack-dev-server --config test/webpack.config.js --env.test_in_browser --progress --hot --open",
"test-analyze-size": "./scripts/build.sh && NODE_ENV=production webpack --config test/webpack.config.js --env.import-nothing --env.es6"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"bowser": "^1.2.0",
"immutable": "*",
"mapbox-gl": "0.44",
"math.gl": "^1.1.0",
"mjolnir.js": "^1.1.0",
"prop-types": "^15.5.7",
"viewport-mercator-project": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.44",
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-es2015": "7.0.0-beta.44",
"babel-eslint": "^6.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-version-inline": "^1.0.0",
"babel-preset-minify": "^0.4.0-alpha.caaefb4c",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-config-uber-jsx": "^3.0.0",
"eslint-plugin-react": "~6.7.0",
"gl": "^4.0.3",
"html-webpack-plugin": "^3.1.0",
"immutable": "^3.8.2",
"jsdom": "~9.9.1",
"module-alias": "^2.0.0",
"path-exists": "^3.0.0",
"pre-commit": "^1.2.2",
"probe.gl": "^1.0.0-alpha.11",
"puppeteer": "^1.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"reify": "^0.4.4",
"sinon": "4.1.3",
"source-map-loader": "^0.2.3",
"tap-browser-color": "^0.1.2",
"tape": "^4.5.1",
"tape-catch": "^1.0.4",
"webpack": "^4.3.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webworkify-webpack-dropin": "^1.1.9"
},
"peerDependencies": {
"react": ">=15.4.x"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}