package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "3d-tiles-renderer",
  3. "version": "0.2.2",
  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/bundle/ --public-url . --no-cache\" \"static-server\"",
  25. "lint": "eslint \"src/**/*.js\" \"test/**/*.js\" && tsc -p tsconfig.json --noEmit",
  26. "test": "jest"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/NASA-AMMOS/3DTilesRendererJS.git"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/NASA-AMMOS/3DTilesRendererJS/issues"
  34. },
  35. "homepage": "https://github.com/NASA-AMMOS/3DTilesRendererJS#readme",
  36. "author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
  37. "license": "Apache-2.0",
  38. "devDependencies": {
  39. "@babel/core": "^7.7.2",
  40. "@babel/preset-env": "^7.7.1",
  41. "babel-jest": "^25.4.0",
  42. "concurrently": "^5.1.0",
  43. "eslint": "^6.8.0",
  44. "eslint-config-mdcs": "^4.2.3",
  45. "eslint-plugin-jest": "^23.8.2",
  46. "jest": "^25.4.0",
  47. "jest-cli": "^25.4.0",
  48. "parcel-bundler": "^1.12.4",
  49. "static-server": "^2.2.1",
  50. "three": ">=0.123.0",
  51. "typescript": "^3.7.4"
  52. },
  53. "peerDependencies": {
  54. "three": ">=0.123.0"
  55. }
  56. }