three.package.json 965 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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://mrdoob.github.com/three.js/",
  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. "scripts" : {
  27. "preinstall" : "ECHO todo",
  28. "test" : "ECHO todo"
  29. },
  30. "license" : {
  31. "type" : "The MIT License",
  32. "url" : "https://raw.github.com/mrdoob/three.js/master/LICENSE"
  33. },
  34. "engines" : {
  35. "node" : "*"
  36. },
  37. "help" : {
  38. "web" : "http://stackoverflow.com/questions/tagged/three.js"
  39. }
  40. }
粤ICP备19079148号