package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "three",
  3. "version": "0.78.0",
  4. "description": "JavaScript 3D library",
  5. "main": "build/three.js",
  6. "files": [
  7. "package.json",
  8. "LICENSE",
  9. "README.md",
  10. "build/three.js",
  11. "build/three.min.js",
  12. "src",
  13. "examples/js",
  14. "examples/fonts",
  15. "bower.json"
  16. ],
  17. "directories": {
  18. "doc": "docs",
  19. "example": "examples",
  20. "test": "test"
  21. },
  22. "scripts": {
  23. "build": "cd ./utils/build && node build.js --include common --include extras",
  24. "dev": "chokidar \"./src/**/*.*\" \"./utils/build/includes/*.*\" --initial -c \"npm run build\"",
  25. "test": "echo \"Error: no test specified\" && exit 1"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/mrdoob/three.js"
  30. },
  31. "keywords": [
  32. "three",
  33. "three.js",
  34. "3d",
  35. "webgl"
  36. ],
  37. "author": "mrdoob",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/mrdoob/three.js/issues"
  41. },
  42. "homepage": "http://threejs.org/",
  43. "devDependencies": {
  44. "argparse": "^1.0.3",
  45. "chokidar-cli": "1.2.0",
  46. "jscs": "^1.13.1",
  47. "uglify-js": "^2.6.0"
  48. }
  49. }