package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "three-orbitcontrols-ts",
  3. "version": "0.1.2",
  4. "description": "ThreeJS OrbitControls as a standalone and typescript compatible npm module",
  5. "main": "dist",
  6. "scripts": {
  7. "preversion": "npm test && ./node_modules/typescript/bin/tsc -p tsconfig.json",
  8. "test": "mocha --opts mocha.opts"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/nicolaspanel/three-orbitcontrols-ts.git"
  13. },
  14. "author": "",
  15. "license": "MIT",
  16. "keywords": [
  17. "orbit",
  18. "controls",
  19. "threejs",
  20. "three",
  21. "js",
  22. "orbiter",
  23. "camera",
  24. "controller"
  25. ],
  26. "bugs": {
  27. "url": "https://github.com/nicolaspanel/three-orbitcontrols-ts/issues"
  28. },
  29. "homepage": "https://github.com/nicolaspanel/three-orbitcontrols-ts#readme",
  30. "dependencies": {
  31. "three": "^0.83.0"
  32. },
  33. "devDependencies": {
  34. "@types/core-js": "^0.9.35",
  35. "@types/jsdom": "^2.0.29",
  36. "@types/mocha": "^2.2.35",
  37. "@types/three": "^0.81.0",
  38. "chai": "^3.5.0",
  39. "jsdom": "^9.9.1",
  40. "mocha": "^3.2.0",
  41. "ts-node": "^2.0.0",
  42. "typescript": "^2.1.4"
  43. },
  44. "typings": "dist/index.d.ts"
  45. }