package.json 673 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "three.js",
  3. "version": "0.71.0",
  4. "description": "JavaScript 3D library",
  5. "main": "build/three.js",
  6. "directories": {
  7. "doc": "docs",
  8. "example": "examples",
  9. "test": "test"
  10. },
  11. "scripts": {
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/mrdoob/three.js"
  17. },
  18. "keywords": [
  19. "three",
  20. "three.js",
  21. "3d",
  22. "webgl"
  23. ],
  24. "author": "mrdoob",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/mrdoob/three.js/issues"
  28. },
  29. "homepage": "http://threejs.org/",
  30. "devDependencies": {
  31. "jscs": "^1.13.1",
  32. "lodash": "^3.10.0"
  33. }
  34. }