forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "react-map-gl",
"description": "React components for Mapbox GL JS-compatible libraries",
"version": "7.0.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",
"types": "dist/esm/index.d.ts",
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"typecheck": "tsc -p tsconfig.esm.json --noEmit",
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"build": "ocular-clean && tsc -b tsconfig.esm.json && tsc -b tsconfig.es5.json",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish-prod": "ocular-publish prod",
"publish-beta": "ocular-publish beta",
"test": "yarn typecheck && ocular-test",
"test-fast": "yarn typecheck && ocular-test node",
"metrics": "ocular-metrics",
"update-release-branch": "scripts/update-release-branch.sh"
},
"dependencies": {
"@types/mapbox-gl": "^2.6.0"
},
"peerDependencies": {
"mapbox-gl": "*",
"react": ">=16.3.0"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@probe.gl/test-utils": "^3.2.1",
"@types/react": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.0",
"jsdom": "^16.5.0",
"mapbox-gl": "^2.8.0",
"ocular-dev-tools": "beta",
"pre-commit": "^1.2.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.0.0"
},
"pre-commit": [
"test-fast"
]
}