-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
111 lines (111 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "lithosphere",
"version": "1.5.0",
"description": "LithoSphere is a GIS JavaScript library for building 3D tile-based globes in the web browser.",
"author": "Tariq Soliman",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NASA-AMMOS/LithoSphere/issues"
},
"homepage": "https://nasa-ammos.github.io/LithoSphere/",
"main": "./public/dist/lithosphere.js",
"types": "./public/dist/lithosphere.d.ts",
"files": [
"public/dist"
],
"scripts": {
"start": "npm run start:dev",
"start:dev": "webpack --mode=development --watch --progress",
"start:demo": "node demo.server.js",
"start:docs": "cd ./docs && bundle exec jekyll serve",
"build": "npm run build:prod",
"build:prod": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"analyze": "webpack --mode=development --watch --progress --analyze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NASA-AMMOS/LithoSphere.git"
},
"keywords": [
"tile",
"javascript",
"planet",
"earth",
"mars",
"space",
"graphics",
"globe",
"3d globe",
"3d tile",
"3d tiles",
"geojson",
"orbit",
"orbital",
"vector",
"dem",
"dtm",
"elevation",
"gdal",
"gdal2tiles",
"3d",
"nasa",
"ammos",
"map",
"mapping",
"visualization",
"three",
"threejs",
"webgl",
"gis",
"geographical information system",
"geospatial",
"rendering",
"geometry",
"terrain",
"mmgis",
"cesium"
],
"devDependencies": {
"@babel/core": "^7.10.1",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.6",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.3",
"http": "^0.0.1-security",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.3.1",
"postcss-loader": "^4.3.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"three": ">=0.122.0"
},
"dependencies": {
"@turf/boolean-intersects": "^6.3.0",
"@turf/circle": "^6.3.0",
"3d-tiles-renderer": "^0.2.6",
"proj4": "^2.7.0",
"three": ">=0.122.0"
}
}