forked from visgl/react-map-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.38 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
{
"name": "react-map-gl",
"description": "A React wrapper for MapboxGL-js and overlay API.",
"version": "2.0.4",
"main": "index.js",
"keywords": [
"mapbox",
"mapbox-gl",
"react",
"react-mapbox-gl",
"react mapbox"
],
"repository": {
"type": "git",
"url": "https://github.com/uber/react-map-gl.git"
},
"license": "MIT",
"dependencies": {
"autobind-decorator": "^1.3.3",
"bowser": "^1.2.0",
"canvas-composite-types": "^1.0.4",
"d3-array": "^1.0.1",
"d3-color": "^1.0.1",
"d3-format": "^1.0.2",
"d3-geo": "^1.2.4",
"d3-scale": "^1.0.3",
"d3-selection": "^1.0.2",
"flow-remove-types": "^1.1.2",
"glob": "^7.1.1",
"global": "^4.3.0",
"mapbox-gl": "0.32.1",
"prop-types": "^15.5.10",
"pure-render-decorator": "^1.1.0",
"svg-transform": "0.0.3",
"viewport-mercator-project": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^6.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.2.2",
"d3-random": "^1.0.1",
"disc": "^1.3.2",
"electron-prebuilt": "^0.37.3",
"envify": "^3.4.0",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-config-uber-jsx": "^3.0.0",
"eslint-plugin-react": "~6.7.0",
"immutable": "^3.7.6",
"react": "15.x",
"react-dom": "15.x",
"tape": "^4.5.1",
"tape-catch": "^1.0.4",
"tap-browser-color": "^0.1.2",
"testron": "^1.2.0"
},
"scripts": {
"build": "babel src -d dist --copy-files --source-maps inline",
"start": "budo ./example/main.js --live --open --port 9966 -- -t babelify -t envify",
"lint": "eslint src example test",
"test": "npm run lint && browserify -t babelify -t envify test/index.js | testron",
"precommit": "npm run lint -s",
"prepush": "npm run lint -s",
"prepublish": "npm run build",
"postinstall": "node postinstall.js",
"profile-disc": "browserify src/index.js --full-paths -t babelify | discify --open"
},
"files": [
"src",
"dist",
"postinstall.js"
],
"peerDependencies": {
"immutable": "^3.7.6",
"react": "0.14.x - 15.x"
},
"engines": {
"node": ">= 4",
"npm": ">= 3"
}
}