package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "three",
  3. "version": "0.79.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": "rollup -c",
  24. "build-min": "rollup -c && uglifyjs build/three.js -cm --preamble \"\/\/ threejs.org\/license\" > build/three.min.js",
  25. "dev": "rollup -c -w",
  26. "test": "echo \"Error: no test specified\" && exit 1"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/mrdoob/three.js"
  31. },
  32. "keywords": [
  33. "three",
  34. "three.js",
  35. "3d",
  36. "webgl"
  37. ],
  38. "author": "mrdoob",
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/mrdoob/three.js/issues"
  42. },
  43. "homepage": "http://threejs.org/",
  44. "devDependencies": {
  45. "argparse": "^1.0.3",
  46. "chokidar-cli": "1.2.0",
  47. "jscs": "^1.13.1",
  48. "rollup": "^0.34.8",
  49. "uglify-js": "^2.6.0"
  50. }
  51. }