package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "3d-tiles-renderer",
  3. "version": "0.2.7",
  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. "main": "src/index.js",
  19. "module": "src/index.js",
  20. "files": [
  21. "src/*"
  22. ],
  23. "scripts": {
  24. "start": "concurrently \"parcel watch example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"static-server\"",
  25. "build": "parcel build --no-content-hash example/*.html --out-dir ./example/bundle/ --public-url . --no-cache",
  26. "lint": "eslint \"src/**/*.js\" \"test/**/*.js\" && tsc -p tsconfig.json --noEmit",
  27. "test": "jest"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
  35. },
  36. "homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
  37. "author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
  38. "license": "Apache-2.0",
  39. "devDependencies": {
  40. "@babel/core": "^7.13.8",
  41. "@babel/preset-env": "^7.13.8",
  42. "babel-jest": "^25.5.1",
  43. "concurrently": "^5.3.0",
  44. "eslint": "^6.8.0",
  45. "eslint-config-mdcs": "^4.2.3",
  46. "eslint-plugin-jest": "^23.20.0",
  47. "jest": "^25.5.4",
  48. "jest-cli": "^25.5.4",
  49. "parcel-bundler": "^1.12.4",
  50. "static-server": "^2.2.1",
  51. "three": ">=0.126.0",
  52. "typescript": "^3.9.9"
  53. },
  54. "peerDependencies": {
  55. "three": ">=0.123.0"
  56. }
  57. }