forked from WorldWindEarth/worldwind-react-globe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.53 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
{
"name": "worldwind-react-globe",
"version": "0.8.0",
"description": "An interactive globe for React featuring maps, imagery and terrain plus 2D map projections using the Web WorldWind virtual globe SDK from NASA and ESA.",
"private": true,
"keywords": [
"react",
"react-component",
"worldwind",
"globe",
"earth",
"map",
"imagery",
"elevation",
"terrain",
"gis",
"geospatial",
"3D",
"nasa",
"esa"
],
"homepage": "https://earthviewer.github.io/worldwind-react-globe",
"bugs": "https://github.com/emxsys/worldwind-react-globe/issues",
"author": "Bruce Schubert",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EarthViewer/worldwind-react-globe.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@nasaworldwind/worldwind": "git+https://github.com/EarthViewer/WebWorldWind.git#develop"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"mobx": "^4.2.1",
"mobx-react": "^5.1.2",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.0.1",
"gh-pages": "^1.2.0",
"mobx": "^4.3.1",
"mobx-react": "^5.2.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts": "^1.1.1",
"react-test-renderer": "^16.4.1",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-url": "^1.3.0",
"webgl-mock": "^0.1.7"
},
"files": [
"dist"
]
}