package.json 785 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "three.js",
  3. "version": "0.74.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. "build": "cd ./utils/build && node build.js --include common --include extras",
  13. "test": "echo \"Error: no test specified\" && exit 1"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mrdoob/three.js"
  18. },
  19. "keywords": [
  20. "three",
  21. "three.js",
  22. "3d",
  23. "webgl"
  24. ],
  25. "author": "mrdoob",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/mrdoob/three.js/issues"
  29. },
  30. "homepage": "http://threejs.org/",
  31. "devDependencies": {
  32. "argparse": "^1.0.3",
  33. "jscs": "^1.13.1",
  34. "uglify-js": "^2.6.0"
  35. }
  36. }