openglobus/package.json
2023-08-01 19:48:41 +04:00

81 lines
2.3 KiB
JSON

{
"name": "@openglobus/og",
"version": "0.17.1",
"description": "[OpenGlobus](https://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": {
"docs": "jsdoc -r ./src/ -c ./jsdoc.conf.json -d ./docs",
"serve": "ws",
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest --env=jsdom --runInBand --ci --coverage=false",
"test_watch": "jest --env=jsdom --watch",
"lint": "eslint -c ./.eslintrc.js src/og",
"compile_js_as_ts": "tsc src/og/index.js --AllowJs --checkJs --outDir dist/@openglobus/src/",
"font": "node ./fonts/index.js"
},
"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": "https://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.21.5",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.1",
"@types/jest": "^29.5.1",
"clean-jsdoc-theme": "^4.2.7",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdoc": "^4.0.2",
"lint-staged": "^13.2.2",
"local-web-server": "^5.3.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"rollup": "^3.21.3",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"files": [
"src/**/*",
"dist/**/*",
"css/**/*",
"types/**/*"
],
"keywords": [
"map",
"3D",
"webgl",
"globe",
"og"
]
}