1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "3d-tiles-renderer",
- "version": "0.0.1",
- "description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
- "keywords": [
- "3d-tiles",
- "3dtiles",
- "graphics",
- "b3dm",
- "threejs",
- "rendering",
- "geometry",
- "terrain",
- "cesium"
- ],
- "type": "module",
- "main": "src/index.js",
- "scripts": {
- "start": "concurrently \"parcel watch example/*.html --out-dir ./example/bundle/ --public-url . --no-cache\" \"static-server\"",
- "lint": "eslint src/**.js && tsc -p tsconfig.json --noEmit",
- "test": "jest"
- },
- "repository": {
- "type": "git",
- "url": "git@github.jpl.nasa.gov:gkjohnso/3d-tiles-renderer-js.git"
- },
- "author": "Garrett Johnson <gkjohnso@jpl.nasa.gov>",
- "license": "Apache-2.0",
- "devDependencies": {
- "@babel/core": "^7.7.2",
- "@babel/preset-env": "^7.7.1",
- "babel-jest": "^25.4.0",
- "concurrently": "^5.1.0",
- "eslint": "^6.8.0",
- "eslint-config-mdcs": "^4.2.3",
- "eslint-plugin-jest": "^23.8.2",
- "jest": "^25.4.0",
- "jest-cli": "^25.4.0",
- "parcel-bundler": "^1.12.4",
- "static-server": "^2.2.1",
- "three": ">=0.114.0",
- "typescript": "^3.7.4"
- },
- "peerDependencies": {
- "three": ">=0.114.0"
- }
- }
|