package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "3d-tiles-renderer",
  3. "version": "0.3.4",
  4. "description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
  5. "keywords": [
  6. "3d-tiles",
  7. "3dtiles",
  8. "graphics",
  9. "b3dm",
  10. "gltf",
  11. "threejs",
  12. "rendering",
  13. "geometry",
  14. "terrain",
  15. "cesium"
  16. ],
  17. "type": "module",
  18. "sideEffects": false,
  19. "main": "src/index.js",
  20. "module": "src/index.js",
  21. "files": [
  22. "src/*"
  23. ],
  24. "scripts": {
  25. "start": "concurrently \"parcel watch example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"static-server\"",
  26. "build-examples": "parcel build --no-content-hash example/*.html --out-dir ./example/bundle/ --public-url . --no-cache",
  27. "lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"example/*.js\" && tsc -p tsconfig.json --noEmit",
  28. "test": "jest"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
  36. },
  37. "homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
  38. "author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
  39. "license": "Apache-2.0",
  40. "devDependencies": {
  41. "@babel/core": "^7.13.8",
  42. "@babel/preset-env": "^7.13.8",
  43. "@types/three": "^0.128.0",
  44. "babel-jest": "^25.5.1",
  45. "concurrently": "^5.3.0",
  46. "eslint": "^6.8.0",
  47. "eslint-config-mdcs": "^4.2.3",
  48. "eslint-plugin-jest": "^23.20.0",
  49. "jest": "^25.5.4",
  50. "jest-cli": "^25.5.4",
  51. "parcel-bundler": "^1.12.4",
  52. "static-server": "^2.2.1",
  53. "three": ">=0.128.0",
  54. "typescript": "^3.9.9"
  55. },
  56. "peerDependencies": {
  57. "three": ">=0.123.0"
  58. },
  59. "dependencies": {
  60. "path-browserify": "^1.0.1"
  61. }
  62. }