forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.34 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
{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "4.0.0-beta.7",
"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",
"browser": {
"./dist/es5/utils/mapboxgl.js": "./dist/es5/utils/mapboxgl.browser.js",
"./dist/esm/utils/mapboxgl.js": "./dist/esm/utils/mapboxgl.browser.js",
"./dist/es6/utils/mapboxgl.js": "./dist/es6/utils/mapboxgl.browser.js"
},
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"start": "(cd examples/main && npm i && npm run start-local)",
"build": "./scripts/build.sh && ./scripts/collect-metrics.sh",
"typecheck": "flow check",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"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 && npm run typecheck && NODE_ENV=test node test/start.js test",
"test-dist": "NODE_ENV=test 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": "^7.0.0",
"@turf/helpers": "^6.1.4",
"mapbox-gl": "~0.53.0",
"mjolnir.js": "^2.1.0",
"prop-types": "^15.5.7",
"react-virtualized-auto-sizer": "^1.0.2",
"viewport-mercator-project": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-version-inline": "^1.0.0",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-config-uber-jsx": "^3.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-react": "~6.7.0",
"flow-bin": "^0.80.0",
"html-webpack-plugin": "^3.1.0",
"immutable": "^3.8.2",
"jsdom": "~9.9.1",
"module-alias": "^2.0.0",
"pre-commit": "^1.2.2",
"probe.gl": "^1.0.0-alpha.11",
"puppeteer": "^1.2.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"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": ">=16.3.0"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}