forked from heremaps/harp-terrain-datasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@here/harp-terrain-datasource",
"version": "0.7.2",
"description": "Datasource to render terrain data in quantized-mesh and terrarium formats with harp.gl",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "standard ./src/**/*.js ./example/src/**/*.js",
"build-example": "cd example && yarn build",
"deploy-example": "yarn build-example && gh-pages -d ./example -s '{dist/**,index.html}'"
},
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"repository": {
"type": "git",
"url": "https://github.com/heremaps/harp-terrain-datasource.git"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"keywords": [
"HERE",
"HERE technologies",
"Terrain",
"3D Terrain",
"Data Source",
"harp.gl",
"Quantized Mesh",
"Terrarium"
],
"license": "Apache-2.0",
"dependencies": {
"@here/harp-mapview": "^0.16.0",
"@here/harp-mapview-decoder": "^0.16.0",
"@here/quantized-mesh-decoder": "^1.2.0",
"gh-pages": "^3.0.0",
"upng-js": "^2.1.0"
},
"peerDependencies": {
"three": "^0.117.1"
},
"devDependencies": {
"@here/harp-datasource-protocol": "^0.16.0",
"@here/harp-geoutils": "^0.16.0",
"@types/three": "^0.103.2",
"dotenv-safe": "^8.2.0",
"standard": "^14.3.4",
"three": "^0.117.1"
},
"publishConfig": {
"access": "public"
}
}