package.json 977 B

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