openglobus/package.json
Thibaut Lassalle 718ef2b3f8 update libs
2021-11-12 09:32:48 -08:00

86 lines
2.5 KiB
JSON

{
"name": "@openglobus/og",
"version": "0.11.5",
"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 src/og",
"generate_types": "rm -rf types; tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types; exit 0",
"compile_js_as_ts": "tsc src/og/index.js --AllowJs --checkJs --outDir dist/@openglobus/src/",
"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": "mgevlich@gmail.com"
},
"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.0",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^27.0.2",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"jaguarjs-jsdoc": "^1.1.0",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.3.1",
"jest-webgl-canvas-mock": "^0.2.3",
"jsdoc": "^3.6.7",
"lint-staged": "^11.2.6",
"local-web-server": "^5.1.1",
"msdf-bmfont-xml": "^2.5.4",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"files": [
"src/**/*",
"dist/**/*",
"css/**/*",
"types/**/*"
],
"keywords": [
"map",
"3D",
"webgl",
"globe",
"og"
]
}