@nebula.gl/layers
Version:
A suite of 3D-enabled data editing layers, suitable for deck.gl
93 lines (92 loc) • 3.7 kB
JSON
{
"name": "@nebula.gl/layers",
"description": "A suite of 3D-enabled data editing layers, suitable for deck.gl",
"license": "MIT",
"version": "1.0.4",
"author": "Georgios Karnas <georgios@uber.com>",
"repository": {
"type": "git",
"url": "https://github.com/uber/nebula.gl"
},
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"main": "dist/index.js",
"module": "dist-es6/index.js",
"files": [
"dist",
"dist-es6",
"dist-types",
"src"
],
"types": "dist-types/index.d.ts",
"typings": "dist-types/index.d.ts",
"scripts": {
"build-clean": "rm -fr dist dist-es6 && mkdir -p dist dist-es6",
"build-es6": "rm -fr dist-es6 && BABEL_ENV=es6 babel src --config-file ../../babel.config.js --out-dir dist-es6 --source-maps inline --extensions .ts,.tsx",
"build-es5": "rm -fr dist && BABEL_ENV=es5 babel src --config-file ../../babel.config.js --out-dir dist --source-maps inline --extensions .ts,.tsx",
"build": "yarn build-clean && yarn build-es6 && yarn run emitDeclarations && yarn build-es5 && cp ../../README.md .",
"emitDeclarations": "rm -fr dist-types && tsc --emitDeclarationOnly",
"types-check": "tsc --noEmit",
"lint": "(cd ../.. && yarn lint)",
"prepublish": "yarn build",
"publish-prod": "yarn build && yarn test && yarn test-dist && npm publish",
"publish-beta": "yarn build && yarn test && yarn test-dist && npm publish --tag beta",
"test": "yarn lint && yarn build && yarn types-check && yarn jest",
"test-r": "yarn lint && yarn build && yarn test-node && (cd test/rendering-test && node node-rendering.js)",
"test-fast": "yarn test-node",
"test-ci": "yarn lint && node test/node-ci.js",
"test-cover": "NODE_ENV=test tape -r babel-register test/node.js && nyc report",
"test-node": "(cd ../.. && node test/node.js)",
"test-dist": "(cd ../.. && node test/node-dist.js)",
"test-browser": "webpack-dev-server --env.test --progress --hot --open",
"jest": "(cd ../.. && jest src)",
"bench": "node test/bench/node.js",
"bench-browser": "webpack-dev-server --env.bench --progress --hot --open",
"test-rendering": "(cd test/rendering-test && webpack-dev-server --config webpack.config.test-rendering.js --progress --hot --open)"
},
"dependencies": {
"@danmarshall/deckgl-typings": "4.9.12",
"@nebula.gl/edit-modes": "1.0.4",
"@turf/bbox": ">=4.0.0",
"@turf/bbox-polygon": ">=4.0.0",
"@turf/bearing": ">=4.0.0",
"@turf/boolean-point-in-polygon": ">=4.0.0",
"@turf/buffer": ">=4.0.0",
"@turf/center": ">=4.0.0",
"@turf/centroid": ">=4.0.0",
"@turf/circle": ">=4.0.0",
"@turf/destination": ">=4.0.0",
"@turf/difference": ">=4.0.0",
"@turf/distance": ">=4.0.0",
"@turf/ellipse": ">=4.0.0",
"@turf/helpers": ">=4.0.0",
"@turf/intersect": ">=4.0.0",
"@turf/line-intersect": ">=4.0.0",
"@turf/nearest-point-on-line": ">=4.0.0",
"@turf/point-to-line-distance": ">=4.0.0",
"@turf/polygon-to-line": ">=4.0.0",
"@turf/transform-rotate": ">=4.0.0",
"@turf/transform-scale": ">=4.0.0",
"@turf/transform-translate": ">=4.0.0",
"@turf/union": ">=4.0.0",
"cubic-hermite-spline": "^1.0.1",
"geojson-types": "^2.0.1",
"global": ">=4.3.0",
"h3-js": "^3.6.4",
"viewport-mercator-project": ">=6.0.0"
},
"peerDependencies": {
"@deck.gl/core": "^8.6.0",
"@deck.gl/extensions": "^8.6.0",
"@deck.gl/geo-layers": "^8.6.0",
"@deck.gl/layers": "^8.6.0",
"@deck.gl/mesh-layers": "^8.6.0",
"@luma.gl/constants": "^8.5.10",
"@luma.gl/core": "^8.5.10"
},
"gitHead": "8374ab0ac62a52ae8a6b14276694cabced43de35"
}