forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.62 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
{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "5.2.0",
"keywords": [
"mapbox",
"mapbox-gl",
"react",
"react-mapbox-gl",
"react mapbox"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/react-map-gl.git"
},
"license": "MIT",
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/es6/index.js",
"browser": {
"./src/utils/mapboxgl.js": "./src/utils/mapboxgl.browser.js",
"./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": {
"typecheck": "flow check",
"start": "(cd examples/controls && yarn && yarn start-local)",
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"clean": "ocular-clean",
"build": "ocular-clean && ocular-build",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish-prod": "ocular-publish prod",
"publish-beta": "ocular-publish beta",
"test": "flow check && ocular-test",
"test-fast": "flow check && ocular-test fast",
"metrics": "ocular-metrics",
"update-release-branch": "scripts/update-release-branch.sh"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"mapbox-gl": "^1.0.0",
"mjolnir.js": "^2.4.0",
"prop-types": "^15.7.2",
"resize-observer-polyfill": "^1.5.1",
"viewport-mercator-project": "^6.2.3 || ^7.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@probe.gl/bench": "^3.2.1",
"@probe.gl/test-utils": "^3.2.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.0",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.10",
"flow-bin": "^0.98.1",
"immutable": "^3.8.2",
"jsdom": "^15.0.0",
"ocular-dev-tools": "^0.1.8",
"pre-commit": "^1.2.2",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"reify": "^0.18.1",
"sinon": "4.1.3"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"pre-commit": [
"test-fast"
],
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}