package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "type": "module",
  17. "main": "src/index.js",
  18. "scripts": {
  19. "start": "parcel watch example/index.html --out-dir ./example/bundle/ --public-url . --no-cache",
  20. "lint": "eslint src/**",
  21. "test": "jest"
  22. },
  23. "browserslist": [
  24. "last 1 Chrome versions"
  25. ],
  26. "repository": {
  27. "type": "git",
  28. "url": "git@github.jpl.nasa.gov:gkjohnso/3d-tiles-renderer-js.git"
  29. },
  30. "author": "Garrett Johnson <gkjohnso@jpl.nasa.gov>",
  31. "license": "Apache-2.0",
  32. "devDependencies": {
  33. "@babel/core": "^7.7.2",
  34. "@babel/preset-env": "^7.7.1",
  35. "babel-jest": "^24.9.0",
  36. "eslint": "^6.5.1",
  37. "eslint-config-mdcs": "^4.2.3",
  38. "eslint-plugin-jest": "^23.8.2",
  39. "jest": "^24.9.0",
  40. "jest-cli": "^24.9.0",
  41. "parcel-bundler": "^1.12.4",
  42. "three": ">=0.108.0"
  43. },
  44. "peerDependencies": {
  45. "three": ">=0.108.0"
  46. }
  47. }