package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "node utils/build/build.js --include common --include extras",
  24. "build-min": "node utils/build/build.js --include common --include extras --minify",
  25. "dev": "chokidar \"./src/**/*.*\" \"./utils/build/includes/*.*\" --initial -c \"npm run build\"",
  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. "uglify-js": "^2.6.0"
  49. }
  50. }