forked from openglobus/openglobus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.98 KB
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
{
"name": "@openglobus/og",
"version": "0.8.3",
"description": "[OpenGlobus](http://www.openglobus.org/) is a javascript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers and 3d objects. It uses the WebGL technology, open source and completely free.",
"directories": {
"example": "./sandbox"
},
"main": "./src/og/index.js",
"style": "./css/og.css",
"scripts": {
"api": "./node_modules/.bin/jsdoc -t ./jsdoc -r ./src/ -c ./jsdoc/conf.json -d ./api",
"serve": "node_modules/.bin/ws",
"build": "node_modules/.bin/rollup -c",
"webgl": "node_modules/.bin/rollup -c --environment entry:webgl",
"core": "node_modules/.bin/rollup -c --environment entry:core",
"test": "jest --coverage",
"lint": "node_modules/.bin/eslint src/og",
"devStart": "nodemon myServer.js 8082 8081",
"start": "node myServer 8082 8081",
"font": "msdf-bmfont.cmd --reuse -i .\\fonts\\charset.roboto.txt -m 512,512 -f json -o .\\fonts\\Roboto-Regular.png -s 32 -r 8 -p 1 -t msdf .\\fonts\\Roboto-Regular.ttf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openglobus/openglobus.git"
},
"author": "Zemledelec",
"license": "MIT",
"bugs": {
"url": "https://github.com/openglobus/openglobus/issues",
"email": "mgevlich@gmail.com"
},
"homepage": "http://www.openglobus.org",
"dependencies": {
"@tarekraafat/autocomplete.js": "^8.3.2",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"generate-password": "^1.6.0",
"material-design-icons": "^3.0.1",
"materialize-css": "^1.0.0",
"matrix-js-sdk": "^9.9.0",
"method-override": "^3.0.0",
"msdf-bmfont-xml": "^2.5.4",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sqlite3": "^5.0.2"
},
"exports": {
".": "./src/og/index.js",
"./layer": "./src/og/layer/index.js",
"./bv": "./src/og/bv/index.js",
"./terrain": "./src/og/terrain/index.js",
"./entity": "./src/og/entity/index.js",
"./control": "./src/og/control/index.js",
"./webgl": "./src/og/webgl/index.js",
"./scene": "./src/og/scene/index.js"
},
"devDependencies": {
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-json": "^4.1.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^8.2.0",
"enhanced-resolve": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.1.0",
"jaguarjs-jsdoc": "^1.1.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"local-web-server": "^3.0.7",
"postcss": "^8.2.6",
"rollup": "^1.32.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^5.3.1"
},
"keywords": [
"map",
"3D",
"webgl",
"globe",
"og"
]
}