package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "3d-tiles-renderer",
  3. "version": "0.0.1",
  4. "description": "https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification",
  5. "keywords": [
  6. "3d-tiles",
  7. "3dtiles",
  8. "graphics",
  9. "b3dm",
  10. "threejs",
  11. "rendering",
  12. "geometry",
  13. "terrain",
  14. "cesium"
  15. ],
  16. "main": "src/index.js",
  17. "scripts": {
  18. "start": "parcel watch example/index.html --out-dir ./example/bundle/ --public-url . --no-cache",
  19. "lint": "eslint src/**",
  20. "test": "jest"
  21. },
  22. "browserslist": [
  23. "last 1 Chrome versions"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "git@github.jpl.nasa.gov:gkjohnso/3d-tiles-renderer-js.git"
  28. },
  29. "author": "Garrett Johnson <gkjohnso@jpl.nasa.gov>",
  30. "license": "Apache-2.0",
  31. "devDependencies": {
  32. "@babel/core": "^7.7.2",
  33. "@babel/preset-env": "^7.7.1",
  34. "babel-jest": "^24.9.0",
  35. "eslint": "^6.5.1",
  36. "eslint-config-mdcs": "^4.2.3",
  37. "eslint-plugin-jest": "^23.1.1",
  38. "jest": "^24.9.0",
  39. "jest-cli": "^24.9.0",
  40. "parcel-bundler": "^1.12.4",
  41. "three": ">=0.108.0"
  42. },
  43. "peerDependencies": {
  44. "three": ">=0.108.0"
  45. }
  46. }