package.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "jstree",
  3. "title": "jsTree",
  4. "description": "jQuery tree plugin",
  5. "version": "3.0.0",
  6. "homepage": "http://jstree.com",
  7. "author": {
  8. "name": "Ivan Bozhanov",
  9. "email": "jstree@jstree.com",
  10. "url": "http://vakata.com"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/vakata/jstree.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/vakata/jstree/issues"
  18. },
  19. "licenses": [
  20. {
  21. "type": "MIT",
  22. "url": "https://github.com/vakata/jstree/blob/master/LICENSE-MIT"
  23. }
  24. ],
  25. "keywords": [],
  26. "devDependencies": {
  27. "grunt": "~0.4.0",
  28. "grunt-contrib-uglify": "*",
  29. "grunt-contrib-jshint": "*",
  30. "grunt-contrib-concat": "*",
  31. "grunt-contrib-copy": "*",
  32. "dox": "~0.4.4",
  33. "grunt-contrib-less": "~0.8.2",
  34. "grunt-contrib-watch": "~0.5.3",
  35. "grunt-contrib-imagemin": "~0.4.0",
  36. "grunt-contrib-qunit": "~v0.3.0"
  37. },
  38. "dependencies": {
  39. "jquery": ">=1.9.1"
  40. },
  41. "npmName": "jstree",
  42. "npmFileMap": [{
  43. "basePath": "/dist/",
  44. "files": [
  45. "jstree.min.js",
  46. "themes/**/*.png",
  47. "themes/**/*.gif",
  48. "themes/**/*.min.css"
  49. ]
  50. }]
  51. }