package.json 1.2 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": "concurrently \"parcel watch example/*.html --out-dir ./example/bundle/ --public-url . --no-cache\" \"static-server\"",
  20. "lint": "eslint src/**.js && tsc -p tsconfig.json --noEmit",
  21. "test": "jest"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git@github.jpl.nasa.gov:gkjohnso/3d-tiles-renderer-js.git"
  26. },
  27. "author": "Garrett Johnson <gkjohnso@jpl.nasa.gov>",
  28. "license": "Apache-2.0",
  29. "devDependencies": {
  30. "@babel/core": "^7.7.2",
  31. "@babel/preset-env": "^7.7.1",
  32. "babel-jest": "^25.4.0",
  33. "concurrently": "^5.1.0",
  34. "eslint": "^6.8.0",
  35. "eslint-config-mdcs": "^4.2.3",
  36. "eslint-plugin-jest": "^23.8.2",
  37. "jest": "^25.4.0",
  38. "jest-cli": "^25.4.0",
  39. "parcel-bundler": "^1.12.4",
  40. "static-server": "^2.2.1",
  41. "three": ">=0.114.0",
  42. "typescript": "^3.7.4"
  43. },
  44. "peerDependencies": {
  45. "three": ">=0.114.0"
  46. }
  47. }