three.package.json 750 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name" : "three",
  3. "version" : "%VERSION%",
  4. "description" : "JavaScript 3D library",
  5. "keywords" : [
  6. "3D",
  7. "WebGL",
  8. "Three",
  9. "ThreeJS",
  10. "CSS",
  11. "engine",
  12. "rendering",
  13. "geometry",
  14. "math"
  15. ],
  16. "homepage" : "http://threejs.org/",
  17. "bugs" : {
  18. "url" : "https://github.com/mrdoob/three.js/issues"
  19. },
  20. "author" : "three.js contributors",
  21. "main" : "./three.js",
  22. "repository" : {
  23. "type" : "git",
  24. "url" : "git://github.com/mrdoob/three.js.git"
  25. },
  26. "license" : "MIT",
  27. "engines" : {
  28. "node" : "*"
  29. },
  30. "help" : {
  31. "web" : "http://stackoverflow.com/questions/tagged/three.js"
  32. }
  33. }