forked from openglobus/openglobus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "@openglobus/og",
"version": "0.10.0",
"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": ".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 --coverage",
"lint": "eslint src/og",
"prepare": "husky install"
},
"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"
},
"devDependencies": {
"@babel/preset-env": "^7.12.17",
"@rollup/plugin-json": "^4.1.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",
"husky": "^6.0.0",
"jaguarjs-jsdoc": "^1.1.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.7",
"lint-staged": "^11.0.0",
"local-web-server": "^3.0.7",
"msdf-bmfont-xml": "^2.3.6",
"postcss": "^8.3.0",
"prettier": "^2.3.0",
"rollup": "^1.32.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^5.3.1"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"files": [
"src/**/*",
"css/**/*"
],
"keywords": [
"map",
"3D",
"webgl",
"globe",
"og"
]
}