forked from openglobus/openglobus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 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
{
"name": "@openglobus/og",
"version": "0.13.6",
"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",
"types": "./types/index.d.ts",
"scripts": {
"api": "jsdoc -t ./jsdoc -r ./src/ -c ./jsdoc/conf.json -d ./api",
"serve": "ws",
"build": "rollup -c",
"webgl": "rollup -c --environment entry:webgl",
"core": "rollup -c --environment entry:core",
"test": "jest --env=jsdom",
"test_watch": "jest --env=jsdom --watch",
"lint": "eslint -c ./.eslintrc.js src/og",
"generate_types": "rm -rf types; tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"compile_js_as_ts": "tsc src/og/index.js --AllowJs --checkJs --outDir dist/@openglobus/src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openglobus/openglobus.git"
},
"author": "Zemledelec",
"license": "MIT",
"bugs": {
"url": "https://github.com/openglobus/openglobus/issues",
"email": "[email protected]"
},
"homepage": "http://www.openglobus.org",
"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",
"./css/og.css": "./css/og.css"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^27.4.0",
"eslint": "^8.7.0",
"jaguarjs-jsdoc": "^1.1.0",
"jest": "^27.4.7",
"jest-canvas-mock": "^2.3.1",
"jest-webgl-canvas-mock": "^0.2.3",
"jsdoc": "^3.6.10",
"lint-staged": "^12.3.1",
"local-web-server": "^5.1.1",
"msdf-bmfont-xml": "^2.5.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"rollup": "^2.66.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"files": [
"src/**/*",
"dist/**/*",
"css/**/*",
"types/**/*"
],
"keywords": [
"map",
"3D",
"webgl",
"globe",
"og"
]
}