forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.56 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
{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "3.2.1",
"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",
"dist-es6"
],
"scripts": {
"start": "(cd examples/main && (path-exists node_modules || npm i) && npm run start-local)",
"build": "npm run clean && npm run build-es5 && npm run build-es6",
"build-es5": "mkdir -p dist && babel src --out-dir dist --plugins=transform-es2015-modules-commonjs,transform-runtime --source-maps inline",
"build-es6": "mkdir -p dist-es6 && babel src --out-dir dist-es6 --source-maps inline",
"clean": "rm -fr dist/* dist-es6/*",
"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/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"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"bowser": "^1.2.0",
"immutable": "*",
"mapbox-gl": "0.44",
"math.gl": "^1.0.0",
"mjolnir.js": "^1.0.0",
"prop-types": "^15.5.7",
"viewport-mercator-project": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18",
"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",
"immutable": "^3.8.2",
"jsdom": "~9.9.1",
"module-alias": "^2.0.0",
"path-exists": "^3.0.0",
"pre-commit": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"reify": "^0.4.4",
"sinon": "4.1.3",
"tap-browser-color": "^0.1.2",
"tape": "^4.5.1",
"tape-catch": "^1.0.4",
"webpack": "^2.4.0",
"webpack-dev-server": "^2.4.0",
"webworkify-webpack-dropin": "^1.1.9"
},
"peerDependencies": {
"react": ">=15.4.x"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}